Files
raven/server/AyaNova/models/DashboardView.cs
2020-10-29 22:37:26 +00:00

24 lines
475 B
C#

using System.ComponentModel.DataAnnotations;
namespace AyaNova.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
}
}