Files
BeWoPlaner/BeWoPlanerMobil/Util/GoalTreeItem.cs
Lyndon Jetten 23b8757ff5 FaC: Neues Scheduling-Modul hinzugefügt, aber noch lange nicht fertig.
ownChat: Neues TimeStamp-Objekt wird unterstützt und der Chat funktioniert wieder.
2024-06-05 14:45:33 +02:00

33 lines
773 B
C#

using System.Collections.Generic;
using BS.Shared;
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";
public bool IsGoal { get; }
public ValueListEntryType ValueListEntryType { get; }
public GoalTreeItem(bool isGoal, ValueListEntryType valueListEntryType)
{
IsGoal = isGoal;
ValueListEntryType = valueListEntryType;
}
}
}