yavsc/Yavsc/Models/Booking/Profiles/GeneralSettings.cs
2017-01-14 13:53:29 +01:00

16 lines
No EOL
367 B
C#

using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using YavscLib;
namespace Yavsc.Models.Booking.Profiles
{
public class GeneralSettings : ISpecializationSettings
{
public virtual List<MusicalPreference> SoundColor { get; set; }
[Key]
public string UserId
{
get; set;
}
}
}