This commit is contained in:
2018-09-18 17:20:57 +00:00
parent 09c3d86e41
commit 32a358b96c
4 changed files with 62 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using AyaNova.Biz;
using System.ComponentModel.DataAnnotations;
namespace AyaNova.Models
{
public partial class SearchDictionary
{
public long Id { get; set; }
public uint ConcurrencyToken { get; set; }
[Required, MaxLength(255)]
public string Word { get; set; }//max 255 characters ascii set
}
}