/
Airat
/
ASP.NET
Обзор
Документация
Войти
/
Airat
/
ASP.NET
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
NoSQL/src/Pcf.Administration/Pcf.Administration.WebHost/Models/EmployeeResponse.cs
18 строк
432 B
Алексей Ягур
Added NoSql homework
20 июл 2024, 00:10
20 июл 2024, 00:10
e21820e
Код
Авторство
О чём код?
using System; using System.Collections.Generic; using Pcf.Administration.Core.Domain.Administration; namespace Pcf.Administration.WebHost.Models { public class EmployeeResponse { public Guid Id { get; set; } public string FullName { get; set; } public string Email { get; set; } public RoleItemResponse Role { get; set; } public int AppliedPromocodesCount { get; set; } } }