Files
mixtape/zero.Core/Architecture/BaseEntities/IZeroRouteEntity.cs
T
2021-11-20 13:52:28 +01:00

14 lines
277 B
C#

namespace zero.Architecture;
public interface IZeroRouteEntity
{
/// <summary>
/// Id of the entity
/// </summary>
string Id { get; set; }
/// <summary>
/// Unique hash for this entity (primarily used for routing)
/// </summary>
string Hash { get; set; }
}