LANCommander/LANCommander.Server/UI/Pages/Games/Components/AssignKeyDialogViewModel.cs

10 lines
No EOL
283 B
C#

using LANCommander.SDK.Enums;
namespace LANCommander.Server.UI.Pages.Games.Components;
public class AssignKeyDialogViewModel
{
public KeyAllocationMethod KeyAllocationMethod { get; set; }
public string MacAddress { get; set; }
public Guid SelectedUserId { get; set; }
}