18 lines
420 B
C#
18 lines
420 B
C#
namespace Backend.Contracts;
|
|
|
|
public sealed record WinnerArchiveItemDto(
|
|
string CategoryGroup,
|
|
string Category,
|
|
string WinnerName,
|
|
string WinnerSlug,
|
|
string WinnerPlatform,
|
|
string WinnerUrl,
|
|
string? ClipUrl,
|
|
string? ClipTitle,
|
|
string? ClipPlatform,
|
|
string? ClipEmbedStatus);
|
|
|
|
public sealed record WinnerArchiveResponse(
|
|
int Year,
|
|
IEnumerable<WinnerArchiveItemDto> Items);
|