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

12 lines
290 B
C#
Raw Permalink Normal View History

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