This commit is contained in:
24
server/AyaNova/models/DataListView.cs
Normal file
24
server/AyaNova/models/DataListView.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace AyaNova.Models
|
||||
{
|
||||
|
||||
public partial class DataListView
|
||||
{
|
||||
public long Id { get; set; }
|
||||
public uint ConcurrencyToken { get; set; }
|
||||
|
||||
[Required]
|
||||
public long UserId { get; set; }
|
||||
[Required, MaxLength(255)]
|
||||
public string Name { get; set; }//max 255 characters ascii set
|
||||
[Required]
|
||||
public bool Public { get; set; }
|
||||
[Required, MaxLength(255)]
|
||||
public string ListKey { get; set; }//max 255 characters ascii set
|
||||
public string ListView { get; set; }//JSON ListView object
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user