14 lines
271 B
C#
14 lines
271 B
C#
namespace zero.Models;
|
|
|
|
public interface ISupportsRouting
|
|
{
|
|
/// <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; }
|
|
} |