Presence_Desktop/domain/Models/User.cs

11 lines
236 B
C#
Raw Permalink Normal View History

2024-12-23 11:26:41 +00:00
namespace domain.Models
2024-12-23 11:20:09 +00:00
{
public class User
{
public Guid Guid { get; set; }
2024-12-23 11:26:41 +00:00
public required string FIO { get; set; }
2024-12-23 11:20:09 +00:00
public int GroupId { get; set; }
public Group? Group { get; set; }
}
}