Two things:
* User views its devices, from a /manage index link * Yavsc.Server resurection
This commit is contained in:
parent
a825fa48c8
commit
b962d58ded
201 changed files with 3756 additions and 502 deletions
20
Yavsc.Server/Models/Musical/Profiles/Instrumentation.cs
Normal file
20
Yavsc.Server/Models/Musical/Profiles/Instrumentation.cs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Yavsc.Models.Workflow;
|
||||
|
||||
namespace Yavsc.Models.Musical.Profiles
|
||||
{
|
||||
public class Instrumentation : ISpecializationSettings
|
||||
{
|
||||
public string UserId
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
[ForeignKeyAttribute("UserId")]
|
||||
public virtual PerformerProfile User { get; set; }
|
||||
public long InstrumentId { get; set; }
|
||||
|
||||
[ForeignKeyAttribute("InstrumentId")]
|
||||
public virtual Instrument Tool { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue