2026-03-27 18:59:17 -04:00
|
|
|
using System.Collections.ObjectModel;
|
2026-06-06 05:49:24 -05:00
|
|
|
using LANCommander.Launcher.ViewModels.Components;
|
2026-03-27 18:59:17 -04:00
|
|
|
|
2026-06-06 05:49:24 -05:00
|
|
|
namespace LANCommander.Launcher.ViewModels;
|
2026-03-27 18:59:17 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// A named group of games used when GroupBy is active.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class GameGroupViewModel
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
|
public ObservableCollection<GameItemViewModel> Items { get; set; } = new();
|
|
|
|
|
}
|