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

19 lines
303 B
C#

namespace zero.Models;
public interface ISupportsTrees
{
/// <summary>
/// Id of the entity
/// </summary>
string Id { get; set; }
/// <summary>
/// Parent id
/// </summary>
string ParentId { get; set; }
/// <summary>
/// Sort order
/// </summary>
uint Sort { get; set; }
}