yavsc/Yavsc/Models/Booking/Profiles/FormationPerformerProfile.cs

12 lines
317 B
C#
Raw Normal View History

2017-01-06 14:02:17 +01:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
namespace Yavsc.Models.Booking.Profiles
{
public class FormationPerformerProfile
{
[InverseProperty("WorkingFor")]
public virtual List<CoWorking> CoWorking { get; set; }
}
}