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