namespace BGC.Common.Catalog.Models { public class GameFull : GameReduced { public Genre[] Genres { get; set; } = Array.Empty(); public Theme[] Themes { get; set; } = Array.Empty(); public Owner[] Owners { get; set; } = Array.Empty(); public Author[] Authors { get; set; } = Array.Empty(); public Rating[] Ratings { get; set; } = Array.Empty(); } }