using System.Collections.Generic; using System.Globalization; namespace Gos.Core.Entities { public class PartOfSpeechAttribute : BaseEntity, ILocalizableEntity { public short RecordOrder { get; set; } public string Title { get => Translations[CultureInfo.CurrentCulture].Title; set => Translations[CultureInfo.CurrentCulture].Title = value; } public TranslationCollection Translations { get; set; } = new(); public List Values { get; set; } = new(); } }