Compare commits

...

3 Commits

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; }
}
}