yavsc/Yavsc/Models/Booking/MusicalPreference.cs

17 lines
362 B
C#
Raw Normal View History

2017-01-06 14:55:48 +01:00
2017-01-06 14:02:17 +01:00
using System.ComponentModel.DataAnnotations.Schema;
using Yavsc.Models.Workflow;
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; }
public int Rate { get; set; }
}
}