25 lines
604 B
C#
25 lines
604 B
C#
using BankDataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.BindingModels
|
|
{
|
|
public class OperatorBindingModel : IOperatorModel
|
|
{
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public string LastName { get; set; } = string.Empty;
|
|
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
public string? MiddleName { get; set; } = string.Empty;
|
|
|
|
public int Id {get; set; }
|
|
}
|
|
}
|