19 lines
304 B
C#
19 lines
304 B
C#
namespace zero.Models;
|
|
|
|
public interface IZeroTreeEntity
|
|
{
|
|
/// <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; }
|
|
} |