11 lines
198 B
C#
11 lines
198 B
C#
namespace zero.Core.Entities
|
|
{
|
|
public interface IZeroConfigEntity : IZeroEntity
|
|
{
|
|
/// <summary>
|
|
/// Alias of the used type
|
|
/// </summary>
|
|
string TypeAlias { get; set; }
|
|
}
|
|
}
|