21 lines
396 B
C#
21 lines
396 B
C#
using System.Text.Json;
|
|
|
|
namespace ScrapperAPI.Dtos;
|
|
|
|
public sealed record CreateExtractionModelDto(
|
|
string Name,
|
|
int Version,
|
|
string? Description,
|
|
JsonDocument Definition
|
|
);
|
|
|
|
public sealed record ExtractionModelRow(
|
|
long Id,
|
|
string Name,
|
|
int Version,
|
|
string? Description,
|
|
JsonDocument Definition,
|
|
DateTimeOffset CreatedAt,
|
|
DateTimeOffset UpdatedAt
|
|
);
|