Files
mixtape/zero.Core/Models/IZeroRouteEntity.cs
T
2021-11-23 15:43:21 +01:00

14 lines
271 B
C#

namespace zero.Models;
public interface IZeroRouteEntity
{
/// <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; }
}