18 lines
419 B
C#
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();
|
|
}
|
|
}
|
|
}
|