PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentContracts/ViewModels/VacationViewModel.cs

18 lines
455 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentContracts.ViewModels
{
public class VacationViewModel
{
public int Id { get; set; }
public DateTime StartData { get; set; }
public DateTime EndData { get; set; }
public bool Passed { get; set; }
public string EmployeeName { get; set; } = string.Empty;
}
}