ownChat: Neues TimeStamp-Objekt wird unterstützt und der Chat funktioniert wieder.
33 lines
773 B
C#
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;
|
|
}
|
|
}
|
|
}
|