Files
sockeye/server/models/DashboardView.cs
2022-12-16 06:01:23 +00:00

24 lines
475 B
C#

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
}
}