Two things:
* User views its devices, from a /manage index link * Yavsc.Server resurection
This commit is contained in:
22
Yavsc.Server/Models/Musical/MusicalPreference.cs
Normal file
22
Yavsc.Server/Models/Musical/MusicalPreference.cs
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Yavsc.Models.Musical
|
||||
{
|
||||
|
||||
public class MusicalPreference {
|
||||
|
||||
[Key]
|
||||
public string OwnerProfileId
|
||||
{
|
||||
get; set;
|
||||
}
|
||||
|
||||
|
||||
public int Rate { get; set; }
|
||||
|
||||
[Required]
|
||||
public long TendencyId {get; set; }
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user