From f658b828f605ab1089d7aebe260411cbe1679b8d Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Fri, 6 Jan 2017 14:50:15 +0100 Subject: [PATCH] star profile --- .../Models/Booking/Profiles/StarPerformerProfile.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Yavsc/Models/Booking/Profiles/StarPerformerProfile.cs 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