Files
mixtape/zero.Core/Models/ISupportsRouting.cs
T
2021-12-01 15:54:11 +01:00

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; }
}