pr1/presence/domain/Models/User.cs

18 lines
359 B
C#
Raw Normal View History

2024-11-20 17:50:01 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.domain.Models
{
public class User
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
2024-12-05 09:30:01 +00:00
public int GroupId { get; set; }
public Group? Group { get; set; }
2024-11-20 17:50:01 +00:00
}
}