Files
mixtape/Finch/Models/ISupportsRouting.cs
T
2026-04-07 14:23:29 +02:00

14 lines
272 B
C#

namespace Finch.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; }
}