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