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