2017-01-13 16:31:40 +01:00
|
|
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2017-01-14 13:53:29 +01:00
|
|
|
namespace Yavsc.Models.Booking
|
|
|
|
|
{
|
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; }
|
|
|
|
|
|
|
|
|
|
[Required]
|
|
|
|
|
public long TendencyId {get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|