presence/Demo/Data/LocalData/Entity/User.cs

12 lines
231 B
C#
Raw Permalink Normal View History

2024-10-21 12:42:00 +00:00
using System;
namespace Demo.Data.LocalData.Entity
{
public class User
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required int GroupID { get; set; }
}
}