using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Yavsc.Models.Musical.Profiles { public class DjSettings : ISpecializationSettings { public string SoundCloudId { get; set; } public virtual List SoundColor { get; set; } [Key] public string UserId { get; set; } } }