presence/Demo/Domain/Models/User.cs

18 lines
419 B
C#
Raw Normal View History

2024-10-21 12:42:00 +00:00
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();
}
}
}