slarny4/Demo1/Domain/Models/User.cs
atabidze105 ad36f40a57 init
2024-10-24 11:50:32 +03:00

11 lines
211 B
C#

using System;
namespace AttendanceApp.Domain.Models
{
public class User
{
public Guid Id { get; set; }
public string FIO { get; set; }
public int GroupId { get; set; }
}
}