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

15 lines
257 B
C#

using System;
using System.Diagnostics;
using zero.Core.Attributes;
namespace zero.Core.Entities
{
public interface ILanguageAwareEntity
{
/// <summary>
/// Language of the entity
/// </summary>
string LanguageId { get; set; }
}
}