Files
mixtape/zero.Core/Entities/ILanguageAwareEntity.cs
T
2020-10-12 13:14:23 +02:00

16 lines
351 B
C#

namespace zero.Core.Entities
{
public interface ILanguageAwareEntity
{
///// <summary>
///// Contains the parent entity in case this is a language variant
///// </summary>
//public string ParentEntityId { get; set; }
/// <summary>
/// Language of the entity
/// </summary>
string LanguageId { get; set; }
}
}