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

15 lines
257 B
C#
Raw Normal View History

2020-04-13 12:14:19 +02:00
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; }
}
}