aktueller stand
This commit is contained in:
@@ -10,19 +10,12 @@ using FasdDesktopUi.Basics.Models;
|
||||
|
||||
namespace FasdDesktopUi.Pages.DetailsPage.Models
|
||||
{
|
||||
public class DetailsPageDataHistoryValueModel : cDataHistoryValueModel
|
||||
public class DetailsPageDataHistoryColumnModel : cDataHistoryValueModel
|
||||
{
|
||||
public enumHistoryTitleType? PresentationStyle { get; set; }
|
||||
|
||||
public List<List<string>> DetailedData { get; set; }
|
||||
public List<cDataHistoryValueModel> ColumnValues { get; set; }
|
||||
}
|
||||
|
||||
public class DetailsPageDataHistoryColumnModel : DetailsPageDataHistoryValueModel
|
||||
{
|
||||
public List<DetailsPageDataHistoryValueModel> ColumnValues { get; set; }
|
||||
}
|
||||
|
||||
public class cDetailsPageDataHistoryDataModel
|
||||
public class cDetailsPageDataHistoryCategoryDataModel
|
||||
{
|
||||
public DetailsPageDataHistoryColumnModel TitleColumn { get; set; }
|
||||
public List<DetailsPageDataHistoryColumnModel> ValueColumns { get; set; }
|
||||
@@ -30,9 +23,13 @@ namespace FasdDesktopUi.Pages.DetailsPage.Models
|
||||
public double ValueColumnWidth { get; set; } = 100;
|
||||
}
|
||||
|
||||
public class cDetailsPageDataHistoryDataModel : List<cDetailsPageDataHistoryCategoryDataModel>
|
||||
{
|
||||
}
|
||||
|
||||
public class DataHistoryEventArgs : RoutedEventArgs
|
||||
{
|
||||
public DetailsPageDataHistoryValueModel HistoryValueData { get; set; }
|
||||
public cDataHistoryValueModel HistoryValueData { get; set; }
|
||||
|
||||
public DataHistoryEventArgs()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user