21 lines
649 B
C#
21 lines
649 B
C#
|
using BankDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankContracts.BindingModels
|
|||
|
{
|
|||
|
internal class ClientBindingModel : IClientModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
public string Password { get; set; } = string.Empty;
|
|||
|
public string Name { get; set; } = string.Empty;
|
|||
|
public string Surname { get; set; } = string.Empty;
|
|||
|
public string Email { get; set; } = string.Empty;
|
|||
|
public string Patronymic { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|