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