profiles dj, musicien, formation
This commit is contained in:
parent
f30d493f6e
commit
e143052211
35 changed files with 5364 additions and 18 deletions
|
|
@ -18,6 +18,15 @@ namespace Yavsc.Models
|
|||
[StringLength(512),Required()]
|
||||
public string Name {get; set;}
|
||||
|
||||
[StringLength(512)]
|
||||
public string ParentCode { get; set; }
|
||||
|
||||
[ForeignKey("ParentCode")]
|
||||
public virtual Activity Parent { get; set; }
|
||||
|
||||
[InverseProperty("Parent")]
|
||||
public virtual List<Activity> Children { get; set; }
|
||||
|
||||
public string Description {get; set;}
|
||||
/// <summary>
|
||||
/// Name to associate to a performer in this activity domain
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue