using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LANCommander.SDK.Models { public class DepotResults { public ICollection Games { get; set; } public ICollection Collections { get; set; } public ICollection Companies { get; set; } public ICollection Engines { get; set; } public ICollection Genres { get; set; } public ICollection Platforms { get; set; } public ICollection Tags { get; set; } } }