Никита. Добавлена модель пользователя-исполнителя

This commit is contained in:
Никита Потапов 2024-04-17 23:21:57 +04:00
parent e9484f9482
commit 8c26c64dfe
3 changed files with 10 additions and 4 deletions

View File

@ -4,5 +4,6 @@
{
string Name { get; }
string Comment { get; }
string ExecutorId { get; }
}
}

View File

@ -0,0 +1,9 @@
namespace PolyclinicDataModels.Models
{
public interface IExecutorModel
{
string FIO { get; }
string Email { get; }
string Password { get; }
}
}

View File

@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Models\" />
</ItemGroup>
</Project>