17 lines
525 B
C#
17 lines
525 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class PeopleResourceTraining
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid TrainingId { 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 Training Training { get; set; }
|
|
}
|
|
}
|