using System; using System.Collections.Generic; namespace IntegrationTests.Models { public partial class NonProjectTimeAllocation { public System.Guid Id { get; set; } public System.Guid NonProjectTimeId { get; set; } public System.Guid PeopleResourceId { get; set; } public System.DateTime WeekEndingDate { get; set; } public int HoursOff { get; set; } public virtual PeopleResource PeopleResource { get; set; } public virtual NonProjectTime NonProjectTime { get; set; } } }