mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-29 22:22:51 +08:00
17 lines
274 B
C#
17 lines
274 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace FreeSql.Site.Entity.Common
|
|
{
|
|
public class TreeNode
|
|
{
|
|
public string id { get; set; }
|
|
|
|
public string pid { get; set; }
|
|
|
|
public string title { get; set; }
|
|
|
|
}
|
|
}
|