1
0
voyager-api/ScrapperAPI/Dtos/ContentRow.cs

8 lines
138 B
C#

namespace ScrapperAPI.Dtos;
public sealed record ContentRow(
int Id,
int QueueId,
string Content,
DateTime CreatedDate
);