Files
yavsc/Yavsc/Models/Booking/Profiles/StarPerformerProfile.cs
2017-01-06 14:50:15 +01:00

12 lines
342 B
C#

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<MusicalPreference> SoundColor { get; set; }
}
}