PIbd-21_Shanygin_A.V_BaseData/Hotel/HotelContracts/ViewModels/WorkerViewModel.cs

26 lines
596 B
C#
Raw Normal View History

using HotelDataModels.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelContracts.ViewModels
{
public class WorkerViewModel : IWorkerModel
{
public int Id { get; set; }
public int PostId { get; set; }
public string FIO { get; set; } = string.Empty;
public DateTime DateOfBirth { get; set; } = DateTime.Now;
public int WorkExperience { get; set; }
public int Salary { get; set; }
public string Phone { get; set; } = string.Empty;
}
}