LANCommander/LANCommander.Launcher.Models/DepotFilterModel.cs

25 lines
1 KiB
C#
Raw Permalink Normal View History

using LANCommander.Launcher.Settings.Enums;
2025-01-12 02:54:41 -06:00
using LANCommander.SDK.Enums;
2024-11-12 02:35:28 -06:00
using LANCommander.SDK.Models;
namespace LANCommander.Launcher.Models
{
public class DepotFilterModel
{
public string Title { get; set; }
public GroupBy GroupBy { get; set; } = GroupBy.None;
2024-11-12 02:35:28 -06:00
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; } = [];
2024-11-12 02:35:28 -06:00
public int? MinPlayers { get; set; }
public int? MaxPlayers { get; set; }
public bool Installed { get; set; }
}
}