yavsc/Yavsc/Models/Musical/Profiles/DjPerformerProfile.cs

15 lines
396 B
C#

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