This commit is contained in:
Sergey Kozyrev 2024-04-03 13:38:54 +04:00
parent add7fada5f
commit 8811037ff3
2 changed files with 15 additions and 1 deletions

View File

@ -0,0 +1,11 @@
using DataModels.Models;
namespace Contracts.BindingModels
{
public class DetailBindingModel : IDetailModel
{
int Id { get; set; }
int UserId { get; set; }
}
}

View File

@ -7,11 +7,14 @@
</PropertyGroup>
<ItemGroup>
<Folder Include="BindingModels\" />
<Folder Include="BusinessLogicsContracts\" />
<Folder Include="SearchModels\" />
<Folder Include="StoragesContracts\" />
<Folder Include="ViewModels\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DataModels\DataModels.csproj" />
</ItemGroup>
</Project>