11 lines
233 B
C#
11 lines
233 B
C#
namespace ScrapperAPI.Records;
|
|
|
|
public sealed record CompressedContent(
|
|
int Id,
|
|
int QueueId,
|
|
string ContentEncoding,
|
|
byte[] ContentBytes,
|
|
int? OriginalLength,
|
|
int? CompressedLength,
|
|
DateTime CreatedDate
|
|
); |