Files
mixtape/zero.Core/Entities/ILanguageAwareEntity.cs
T
2020-05-04 14:13:03 +02:00

16 lines
343 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; }
}
}