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

15 lines
352 B
C#
Raw Normal View History

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2017-02-12 22:20:57 +01:00
namespace Yavsc.Models.Musical.Profiles
{
public class GeneralSettings : ISpecializationSettings
{
public virtual List<MusicalPreference> SoundColor { get; set; }
[Key]
public string UserId
{
get; set;
}
}
2017-05-27 16:22:58 +02:00
}