CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IUserModel.cs

18 lines
334 B
C#
Raw Normal View History

2024-04-27 12:58:16 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ElectronicsShopDataModels
{
2024-04-28 23:08:09 +04:00
public interface IUserModel : IID
2024-04-27 12:58:16 +04:00
{
2024-04-28 23:08:09 +04:00
int RoleID { get; }
2024-05-19 16:01:45 +04:00
string UserFIO { get; }
2024-04-27 12:58:16 +04:00
string Password { get; }
2024-04-28 23:08:09 +04:00
string Login { get; }
2024-04-27 12:58:16 +04:00
}
}