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