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