18 lines
341 B
C#
18 lines
341 B
C#
using ComputerShopDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerShopDataModels.Models
|
|
{
|
|
public interface IUserModel : IId
|
|
{
|
|
string Login { get; }
|
|
string Password { get; }
|
|
string Email { get; }
|
|
UserRole Role { get; }
|
|
}
|
|
}
|