Files
mixtape/zero.Core/Models/ISupportsTrees.cs
T

19 lines
303 B
C#
Raw Normal View History

2021-11-24 13:56:08 +01:00
namespace zero.Models;
2021-12-01 15:54:11 +01:00
public interface ISupportsTrees
2021-11-24 13:56:08 +01:00
{
/// <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; }
}