This commit is contained in:
2020-02-14 20:36:51 +00:00
parent 7036d0ddd9
commit 49f98efa50
13 changed files with 53 additions and 61 deletions

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