/
Airat
/
ASP.NET
Обзор
Документация
Войти
/
Airat
/
ASP.NET
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
UnitTests/src/PromoCodeFactory.Core/Domain/Administration/Employee.cs
21 строка
510 B
Алексей Ягур
Initial commit
19 июл 2024, 21:59
19 июл 2024, 21:59
5158096
Код
Авторство
О чём код?
using System; using System.Collections.Generic; namespace PromoCodeFactory.Core.Domain.Administration { public class Employee : BaseEntity { public string FirstName { get; set; } public string LastName { get; set; } public string FullName => $"{FirstName} {LastName}"; public string Email { get; set; } public Guid RoleId { get; set; } public virtual Role Role { get; set; } public int AppliedPromocodesCount { get; set; } } }