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

9 lines
141 B
C#

namespace Finch.Models;
public interface ISupportsSorting
{
/// <summary>
/// Sort order
/// </summary>
uint Sort { get; set; }
}