2017-01-02 16:31:43 +01:00
|
|
|
using System.Collections.Generic;
|
2017-01-06 14:02:17 +01:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
using Yavsc.Models.Workflow;
|
2017-01-02 16:31:43 +01:00
|
|
|
|
|
|
|
|
namespace Yavsc.Models.Booking {
|
|
|
|
|
|
|
|
|
|
public class MusicalPreference : MusicalTendency {
|
|
|
|
|
|
2017-01-06 14:02:17 +01:00
|
|
|
public string OwnerProfileId { get; set; }
|
|
|
|
|
|
|
|
|
|
[ForeignKey("OwnerProfileId")]
|
|
|
|
|
public virtual PerformerProfile OwnerProfile { get; set; }
|
2017-01-02 16:31:43 +01:00
|
|
|
public int Rate { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|