2017-01-06 14:02:17 +01:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using Yavsc.Models.Workflow;
|
|
|
|
|
|
2017-02-12 22:20:57 +01:00
|
|
|
namespace Yavsc.Models.Musical
|
2017-01-06 14:02:17 +01:00
|
|
|
{
|
2017-01-09 16:29:34 +01:00
|
|
|
public class DjPerformerProfile : SpecializationSettings
|
2017-01-06 14:02:17 +01:00
|
|
|
{
|
|
|
|
|
public string SoundCloudId { get; set; }
|
|
|
|
|
|
|
|
|
|
[InverseProperty("OwnerProfile")]
|
|
|
|
|
public virtual List<MusicalPreference> SoundColor { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|