Perepis/data/RemoteData/DAO/User.cs

19 lines
464 B
C#
Raw Permalink Normal View History

2024-11-08 08:08:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.RemoteData.DAO
{
2024-11-08 09:18:19 +00:00
public class UserDao
2024-11-08 08:08:54 +00:00
{
2024-11-08 09:18:19 +00:00
public required string FIO { get; set; }
public Guid UserGuid { get; set; }
public GroupDao Group { get; set; }
public required int GroupID { get; set; }
public List<PresnceDao> Presences { get; set; } = new List<PresnceDao>();
2024-11-08 08:08:54 +00:00
}
2024-11-08 09:18:19 +00:00
}