presence/Demo/Domain/Models/User.cs
Class_Student 85738972fe init
2024-10-21 15:42:00 +03:00

18 lines
419 B
C#

using System;
namespace Demo.Domain.Models
{
public class User
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required Group Group { get; set; }
public int GroupID { get; internal set; }
public static explicit operator User(Data.LocalData.Entity.User? v)
{
throw new NotImplementedException();
}
}
}