7039858d9e
This reverts commit 0d3bf47f73.
16 lines
351 B
C#
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; }
|
|
}
|
|
}
|