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

12 lines
231 B
C#

using System;
namespace Demo.Data.LocalData.Entity
{
public class User
{
public required string FIO { get; set; }
public Guid Guid { get; set; }
public required int GroupID { get; set; }
}
}