12 lines
209 B
C#
12 lines
209 B
C#
namespace IM_API.Models
|
|
{
|
|
public partial class Admin
|
|
{
|
|
public AdminState StateEnum
|
|
{
|
|
get => (AdminState)State;
|
|
set => State = (sbyte)value;
|
|
}
|
|
}
|
|
}
|