25 lines
389 B
C#
25 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptDataModels.Models
|
|
{
|
|
//клиент
|
|
public interface ICashierModel : IId
|
|
{
|
|
string Password { get; }
|
|
|
|
string Name { get; }
|
|
|
|
string Surname { get; }
|
|
|
|
string Patronymic { get; }
|
|
|
|
string Email { get; }
|
|
|
|
string Telephone { get; }
|
|
}
|
|
}
|