yavsc/Yavsc.Server/Models/Musical/Profiles/StarPerformerProfile.cs

12 lines
342 B
C#

8 years ago
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
8 years ago
namespace Yavsc.Models.Musical.Profiles
8 years ago
{
public class StarPerformerProfile : PerformerProfile
{
[InverseProperty("OwnerProfile")]
public virtual List<MusicalPreference> SoundColor { get; set; }
}
}