presence/domain/Entity/UserEntity.cs

21 lines
412 B
C#
Raw Normal View History

2024-11-26 05:09:12 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Entity
{
public class UserEntity
{
public int Id { get; set; }
public string LastName { get; set; }
public string FirstName { get; set; }
public string Patronymic { get; set; }
public GroupEntity Group { get; set; }
}
}