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

7 lines
196 B
C#

namespace Gos.Core.Entities
{
public class PartOfSpeechAttributeValueTranslation : Translation<PartOfSpeechAttributeValueTranslation>
{
public string Title { get; set; }
}
}