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