- Löschrechtprüfung an FaC angepasst. - Ziele und Maßnahmen sind alphabetisch absteigend sortiert wie im FaC. - Reports bei Klienten verbessert. - Bargeldtransaktionshistorie eingebaut.
29 lines
601 B
C#
29 lines
601 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";
|
|
|
|
public bool IsGoal { get; }
|
|
|
|
public GoalTreeItem(bool isGoal)
|
|
{
|
|
IsGoal = isGoal;
|
|
}
|
|
}
|
|
}
|