Coursework_ComputerStore_Li.../ComputerStoreDataModels/Models/IEmployeeModel.cs

18 lines
395 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
public interface IEmployeeModel : IID
{
string Username { get; }
string Password { get; }
string? FirstName { get; }
string? LastName { get; }
string? MiddleName { get; }
}
}