22 lines
370 B
C#
22 lines
370 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 Name { get; set; }
|
|||
|
|
|||
|
string Surname { get; set; }
|
|||
|
|
|||
|
string Patronymic { get; set; }
|
|||
|
|
|||
|
string Email { get; set; }
|
|||
|
|
|||
|
string Telephone { get; set; }
|
|||
|
}
|
|||
|
}
|