LANCommander/LANCommander.SDK/Enums/KeyAllocationMethod.cs

12 lines
255 B
C#

using System.ComponentModel.DataAnnotations;
namespace LANCommander.SDK.Enums
{
public enum KeyAllocationMethod
{
[Display(Name = "MAC Address")]
MacAddress,
[Display(Name = "User Account")]
UserAccount
}
}