CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataModels/Models/IUserModel.cs

22 lines
453 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
//ID role
int RoleID { get; }
2024-04-27 12:58:16 +04:00
string FirstName { get; }
string LastName { get; }
string Password { get; }
string PhoneNumber { get; }
2024-04-28 23:08:09 +04:00
string Login { get; }
string Email { get; }
2024-04-27 12:58:16 +04:00
}
}