This commit is contained in:
22
server/AyaNova/models/WikiPage.cs
Normal file
22
server/AyaNova/models/WikiPage.cs
Normal 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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user