forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
27 lines
564 B
C#
27 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.ViewModels;
|
|
|
|
public class EmployeeViewModel
|
|
{
|
|
public required string Id { get; set; }
|
|
|
|
public required string FIO { get; set; }
|
|
|
|
public string Email { get; set; }
|
|
|
|
public required string PostId { get; set; }
|
|
|
|
public required string PostName { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
public DateTime BirthDate { get; set; }
|
|
|
|
public DateTime EmploymentDate { get; set; }
|
|
}
|