using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using xModels.Base; namespace xStringService.Models.Entities { public class XString : XBaseIntIDEntity { [Required] [StringLength (10)] public string Language { get; set; } [Required] [StringLength (255)] public string ResourceTitle { get; set; } [Required] public string TranslatedValue { get; set; } } }