PIbd-42_Kashin_M.I_CPO_Cour.../EmployeeManagmentDataModels/Models/IVacation.cs

19 lines
435 B
C#
Raw Normal View History

using EmployeeManagmentDataModels.Enums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EmployeeManagmentDataModels.Models
{
public interface IVacation
{
int Id { get; set; }
DateTime StartData { get; set; }
DateTime EndData { get; set; }
bool Passed { get; set; }
int? EmployeesId { get; set; }
}
}