yavsc/src/Yavsc.Server/Models/Musical/Profiles/FormationPerformerProfile.cs

12 lines
318 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;
2017-02-12 22:20:57 +01:00
namespace Yavsc.Models.Musical.Profiles
2017-01-06 14:02:17 +01:00
{
public class FormationPerformerProfile
{
[InverseProperty("WorkingFor")]
public virtual List<CoWorking> CoWorking { get; set; }
}
2019-08-20 16:49:38 +01:00
}