21 lines
504 B
C#
21 lines
504 B
C#
using ComputerStoreDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ComputerStoreDataModels.Models
|
|
{
|
|
public interface IUserModel : IID
|
|
{
|
|
string Username { get; }
|
|
string Password { get; }
|
|
string FirstName { get; }
|
|
string LastName { get; }
|
|
string MiddleName { get; }
|
|
EmployeeRole Role { get; }
|
|
}
|
|
}
|