| 12345678910111213141516171819202122232425262728293031 |
- namespace Application.Features.Admin.Store.Game.Get;
- public sealed record Response(
- int ID,
- string? Code,
- string KorName,
- string? EngName,
- string Publisher,
- string? Thumbnail,
- string? BigImage,
- string? Description,
- decimal CommissionRate,
- string? Link,
- bool IsActive,
- int Order,
- DateTime CreatedAt,
- DateTime? UpdatedAt,
- string? TrailerUrl,
- string? MinSpec,
- string? RecommendedSpec,
- DateOnly? ReleaseDate,
- IReadOnlyList<int> GenreIDs,
- IReadOnlyList<int> CategoryIDs,
- IReadOnlyList<Response.ImageRow> Images,
- IReadOnlyList<Response.LanguageSupportRow> Languages
- )
- {
- public sealed record ImageRow(int ID, string Url);
- public sealed record LanguageSupportRow(int GameLanguageID, bool Interface, bool FullAudio, bool Subtitles);
- }
|