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