Demo/Data/RemoteData/RemoteDataBase/DAO/User.cs

12 lines
289 B
C#
Raw Normal View History

2024-10-24 20:41:31 +00:00
using System.Text.RegularExpressions;
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
{
public class UserDao
{
public string FIO { get; set; }
public Guid Guid {get; set; }
public int GroupID {get; set;}
public GroupDao Group {get; set; }
}
}