diff --git a/Yavsc/Models/Booking/Profiles/StarPerformerProfile.cs b/Yavsc/Models/Booking/Profiles/StarPerformerProfile.cs new file mode 100644 index 00000000..1dc1a077 --- /dev/null +++ b/Yavsc/Models/Booking/Profiles/StarPerformerProfile.cs @@ -0,0 +1,12 @@ +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; +using Yavsc.Models.Workflow; + +namespace Yavsc.Models.Booking.Profiles +{ + public class StarPerformerProfile : PerformerProfile + { + [InverseProperty("OwnerProfile")] + public virtual List SoundColor { get; set; } + } +} \ No newline at end of file