LANCommander/LANCommander.SDK/Enums/KeyAllocationMethod.cs

13 lines
255 B
C#
Raw Permalink Normal View History

using System.ComponentModel.DataAnnotations;
2024-09-04 16:48:04 -05:00
namespace LANCommander.SDK.Enums
{
public enum KeyAllocationMethod
{
[Display(Name = "MAC Address")]
2024-09-04 16:48:04 -05:00
MacAddress,
[Display(Name = "User Account")]
2024-09-04 16:48:04 -05:00
UserAccount
}
}