Files
BeWoPlaner/BeWoPlanerMobil/Util/GoalTreeItem.cs
Lyndon Jetten 38d7564496 Mobilklient:
Bewertung hinzugefügt
2021-06-16 15:11:39 +02:00

22 lines
488 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; }
public long? TopmostParentOid { get; set; }
public string RatingName { get; set; } = "Bewerten";//string.Empty;
}
}