Coursework_ComputerStore_Li.../ComputerStoreDataModels/Models/IUserModel.cs

21 lines
504 B
C#
Raw Normal View History

using ComputerStoreDataModels.Enums;
using System;
2023-04-05 18:59:50 +04:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2023-04-05 18:59:50 +04:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
2023-04-05 19:16:26 +04:00
public interface IUserModel : IID
2023-04-05 18:59:50 +04:00
{
2023-04-05 19:16:26 +04:00
string Username { get; }
string Password { get; }
string FirstName { get; }
string LastName { get; }
string MiddleName { get; }
EmployeeRole Role { get; }
2023-04-05 18:59:50 +04:00
}
}