slarny4/Demo1/Data/LocalData/Entity/User.cs

9 lines
265 B
C#
Raw Normal View History

2024-11-25 04:33:26 +00:00
namespace Demo.Data.LocalData.Entity
2024-10-28 12:42:04 +00:00
{
public class User
{
public Guid Id { get; set; }
2024-11-25 04:33:26 +00:00
public string FIO { get; set; } = string.Empty; // Инициализация по умолчанию
2024-10-28 12:42:04 +00:00
public int GroupID { get; set; }
}
}