ISEbd-22_CourseWork_School/School/SchoolContracts/ViewModels/ImplementerViewModel.cs

17 lines
511 B
C#

using SchoolDataModels;
using System.ComponentModel;
namespace SchoolContracts.ViewModels
{
public class ImplementerViewModel : IImplementerModel
{
public int Id { get; set; }
public string LastName { get; set; } = string.Empty;
public string FirstName { get; set; } = string.Empty;
public string Login { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
public string PhoneNumber { get; set; } = string.Empty;
}
}