8 lines
233 B
C#
8 lines
233 B
C#
|
namespace Gos.Core.Entities
|
|||
|
{
|
|||
|
public interface ILocalizableEntity<TTranslation>
|
|||
|
where TTranslation : Translation<TTranslation>, new()
|
|||
|
{
|
|||
|
TranslationCollection<TTranslation> Translations { get; set; }
|
|||
|
}
|
|||
|
}
|