23 lines
724 B
C#
23 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Vacation
|
|
{
|
|
public Vacation()
|
|
{
|
|
this.PeopleResourceVacations = new List<PeopleResourceVacation>();
|
|
}
|
|
|
|
public System.Guid Id { get; set; }
|
|
public System.DateTime StartDate { get; set; }
|
|
public System.DateTime EndDate { get; set; }
|
|
public System.Guid PeopleResourceId { get; set; }
|
|
public decimal HoursOff { get; set; }
|
|
public string Weekends { get; set; }
|
|
public virtual PeopleResource PeopleResource { get; set; }
|
|
public virtual ICollection<PeopleResourceVacation> PeopleResourceVacations { get; set; }
|
|
}
|
|
}
|