stage5_models_and_storages_contracts_nikita #1

Merged
ekallin merged 9 commits from stage5_models_and_storages_contracts_nikita into stage5_models_and_storages_contracts 2024-04-27 10:40:54 +04:00
3 changed files with 10 additions and 4 deletions
Showing only changes of commit 8c26c64dfe - Show all commits

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>