Files
mixtape/zero.Core/Entities/ILanguageAwareEntity.cs
T

16 lines
351 B
C#
Raw Normal View History

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