This commit is contained in:
Ismailov_Rovshan 2023-04-05 22:03:35 +04:00
parent 11ad70ac8f
commit faf601909c
2 changed files with 20 additions and 0 deletions

View File

@ -6,6 +6,10 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\FurnitureFactoryDataModels\FurnitureFactoryDataModels.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="BindingModels\" />
</ItemGroup>

View File

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryDataModels.Models
{
internal interface User
{
int Login { get;}
int Password { get; }
string UserName { get; }
int RoleID { get; }
}
}