namespace BGC.Common.Catalog.Models { public class DataForSelection { public GameReduced[] Games { get; set; } = Array.Empty(); 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(); } }