namespace Application.Features.Admin.Store.GameCatalog.GetByGame; public sealed record Response( int GameID, string GameName, string? GameCode, decimal ApiCommissionRate, List List ) { public sealed record Row( int ID, string ProductID, int Price, bool IsActive, DateTime CreatedAt, DateTime? UpdatedAt ); }