LANCommander/LANCommander.Launcher.Models/DepotFilterModel.cs
2025-01-12 02:54:41 -06:00

24 lines
987 B
C#

using LANCommander.Launcher.Models.Enums;
using LANCommander.SDK.Enums;
using LANCommander.SDK.Models;
namespace LANCommander.Launcher.Models
{
public class DepotFilterModel
{
public string Title { get; set; }
public GroupBy GroupBy { get; set; } = GroupBy.None;
public SortBy SortBy { get; set; } = SortBy.Title;
public SortDirection SortDirection { get; set; } = SortDirection.Ascending;
public ICollection<Collection> Collections { get; set; }
public ICollection<Engine> Engines { get; set; }
public ICollection<Genre> Genres { get; set; }
public ICollection<Tag> Tags { get; set; }
public ICollection<Platform> Platforms { get; set; }
public ICollection<Company> Developers { get; set; }
public ICollection<Company> Publishers { get; set; }
public int? MinPlayers { get; set; }
public int? MaxPlayers { get; set; }
public bool Installed { get; set; }
}
}