1
0
voyager-api/ScrapperAPI/Records/CompressedContent.cs

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
);