2024-04-29 14:56:29 +04:00

20 lines
538 B
C#

using SchoolContracts.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SchoolContracts.BindingModels
{
public class WorkerBindingModel : IWorkerModel
{
public int Id { get; set; }
public string Login { get; set; } = string.Empty;
public string Email { get; set; } = string.Empty;
public string FIO { get; set; } = string.Empty;
public string Post { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
}