Files
raven/server/AyaNova/models/SearchDictionary.cs
2018-09-18 17:20:57 +00:00

20 lines
427 B
C#

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