gos/src/Gos.Core/Entities/PartOfSpeechTranslation.cs

7 lines
168 B
C#
Raw Permalink Normal View History

2022-07-06 19:35:05 +00:00
namespace Gos.Core.Entities
{
public class PartOfSpeechTranslation : Translation<PartOfSpeechTranslation>
{
public string Title { get; set; }
}
}