24 lines
373 B
C#
24 lines
373 B
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace BankYouBankruptDataModels.Models
|
||
{
|
||
public interface IСlientModel : IId
|
||
{
|
||
string Password { get; }
|
||
|
||
string Name { get; }
|
||
|
||
string Surname { get; }
|
||
|
||
string Patronymic { get; }
|
||
|
||
string Email { get; }
|
||
|
||
string Telephone { get; }
|
||
}
|
||
}
|