24 lines
475 B
C#
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
|
|
|
|
|
|
}
|
|
}
|