CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptDataModels/Models/IСlientModel.cs
2023-04-01 15:33:39 +04:00

25 lines
388 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptDataModels.Models
{
//клиент
public interface IClientModel : IId
{
string Password { get; }
string Name { get; }
string Surname { get; }
string Patronymic { get; }
string Email { get; }
string Telephone { get; }
}
}