2021-11-23 15:43:21 +01:00
|
|
|
namespace zero.Models;
|
2021-11-19 14:59:24 +01:00
|
|
|
|
2021-12-01 15:54:11 +01:00
|
|
|
public interface ISupportsRouting
|
2021-11-19 14:59:24 +01:00
|
|
|
{
|
|
|
|
|
/// <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; }
|
|
|
|
|
}
|