LANCommander/LANCommander.Launcher/ViewModels/GameGroupViewModel.cs
Pat Hartl b183e4b18c Remove old launcher, rename Avalonia launcher
Also adds ARM builds for Linux + Windows launcher
2026-06-06 05:49:24 -05:00

13 lines
389 B
C#

using System.Collections.ObjectModel;
using LANCommander.Launcher.ViewModels.Components;
namespace LANCommander.Launcher.ViewModels;
/// <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();
}