yavsc/src/Server/Models/Musical/MusicalPreference.cs

23 lines
339 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
2019-09-04 01:25:36 +01:00
using Yavsc.Attributes.Validation;
2017-02-12 22:20:57 +01:00
namespace Yavsc.Models.Musical
2017-01-14 13:53:29 +01:00
{
2017-01-14 13:53:29 +01:00
public class MusicalPreference {
[Key]
public string OwnerProfileId
{
get; set;
}
public int Rate { get; set; }
2019-09-04 01:25:36 +01:00
[YaRequired]
public long TendencyId {get; set; }
}
}