14 lines
354 B
C#
14 lines
354 B
C#
using System.Collections.Generic;
|
|
|
|
namespace BeWoPlanerMobil.Util
|
|
{
|
|
public class GoalTreeItem
|
|
{
|
|
public string Header { get; set; }
|
|
public bool IsLeaf { get; set; }
|
|
public List<GoalTreeItem> Children { get; set; }
|
|
public long? ParentOid { get; set; }
|
|
public long? ValueListEntryOid { get; set; }
|
|
}
|
|
}
|