CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/IСlientModel.cs

25 lines
388 B
C#
Raw Normal View History

2023-04-01 11:48:34 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
//клиент
2023-04-01 15:33:39 +04:00
public interface IClientModel : IId
2023-04-01 11:48:34 +04:00
{
string Password { get; }
2023-04-01 11:48:34 +04:00
string Name { get; }
2023-04-01 11:48:34 +04:00
string Surname { get; }
2023-04-01 11:48:34 +04:00
string Patronymic { get; }
2023-04-01 11:48:34 +04:00
string Email { get; }
string Telephone { get; }
2023-04-01 11:48:34 +04:00
}
}