This commit is contained in:
2020-04-15 22:01:39 +00:00
parent af1596a47c
commit 08263e1dc7
3 changed files with 58 additions and 13 deletions

View File

@@ -0,0 +1,22 @@
using AyaNova.Biz;
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
public partial class WikiPage
{
public long Id { get; set; }
public uint ConcurrencyToken { get; set; }
//-----------------------------------------
[Required]
public long ObjectId { get; set; }
[Required]
public AyaType ObjectType { get; set; }//int
public string Content { get; set; }
}
}