presence_api/data/RemoteData/RemoteDatabase/DAO/User.cs

19 lines
506 B
C#
Raw Normal View History

2024-11-11 11:35:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-11-13 09:08:49 +00:00
using System.Text.Json.Serialization;
2024-11-11 11:35:05 +00:00
using System.Threading.Tasks;
namespace data.RemoteData.RemoteDataBase.DAO
{
public class UserDao
{
public required string FIO { get; set; }
public required int UserId { get; set; }
public int GroupId { get; set; }
2024-11-13 09:08:49 +00:00
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
public virtual GroupDao? Group { get; set; }
2024-11-11 11:35:05 +00:00
}
}