//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EnVisage { using System; using System.Collections.Generic; public partial class Holiday { public Holiday() { this.Holiday2ExpenditureCategory = new HashSet(); this.Holiday2PeopleResource = new HashSet(); this.Holiday2Team = new HashSet(); this.HolidayAllocations = new HashSet(); } public System.Guid Id { get; set; } public string Name { get; set; } public bool WorkingDays { get; set; } public System.Guid HolidayGroupId { get; set; } public System.DateTime EffectiveChangeDate { get; set; } public System.DateTime CreatedAt { get; set; } public string Options { get; set; } public System.DateTime StartDate { get; set; } public Nullable EndDate { get; set; } public bool CompanyImpact { get; set; } public bool IsInclude { get; set; } public virtual ICollection Holiday2ExpenditureCategory { get; set; } public virtual ICollection Holiday2PeopleResource { get; set; } public virtual ICollection Holiday2Team { get; set; } public virtual ICollection HolidayAllocations { get; set; } } }