gos/src/Gos.Core/Entities/PartOfSpeech.cs
2022-07-06 21:35:05 +02:00

22 lines
654 B
C#

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