21 lines
412 B
C#
21 lines
412 B
C#
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; }
|
|
}
|
|
}
|