This commit is contained in:
23
server/models/DashboardView.cs
Normal file
23
server/models/DashboardView.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace Sockeye.Models
|
||||
{
|
||||
|
||||
public class DashboardView
|
||||
{
|
||||
public DashboardView(){
|
||||
View="[]";//empty view by default
|
||||
}
|
||||
public long Id { get; set; }
|
||||
public uint Concurrency { get; set; }
|
||||
|
||||
[Required]
|
||||
public long UserId { get; set; }
|
||||
|
||||
[Required]
|
||||
public string View { get; set; }//JSON Dashboard registry view object
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user