profiles dj, musicien, formation
This commit is contained in:
parent
f30d493f6e
commit
e143052211
35 changed files with 5364 additions and 18 deletions
|
|
@ -1,10 +1,15 @@
|
|||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Yavsc.Models.Workflow;
|
||||
|
||||
namespace Yavsc.Models.Booking {
|
||||
|
||||
public class MusicalPreference : MusicalTendency {
|
||||
|
||||
public long OwnerId { get; set; }
|
||||
public string OwnerProfileId { get; set; }
|
||||
|
||||
[ForeignKey("OwnerProfileId")]
|
||||
public virtual PerformerProfile OwnerProfile { get; set; }
|
||||
public int Rate { get; set; }
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue