2020-05-04 14:13:03 +02:00
|
|
|
namespace zero.Core.Entities
|
2020-04-13 12:14:19 +02:00
|
|
|
{
|
|
|
|
|
public interface ILanguageAwareEntity
|
|
|
|
|
{
|
2020-05-04 14:13:03 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Contains the parent entity in case this is a language variant
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string ParentEntityId { get; set; }
|
|
|
|
|
|
2020-04-13 12:14:19 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Language of the entity
|
|
|
|
|
/// </summary>
|
|
|
|
|
string LanguageId { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|