Files
C4IT-F4SD-Client/FasdDesktopUi/Pages/SlimPage/Models/cSlimPageDataHistoryModel.cs
2025-11-11 11:03:42 +01:00

16 lines
410 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using FasdDesktopUi.Basics.Models;
namespace FasdDesktopUi.Pages.SlimPage.Models
{
public class cSlimPageDataHistoryModel : cDataHistoryValueModel
{
public List<cDataHistoryValueModel> ValueColumns { get; set; } = new List<cDataHistoryValueModel>();
}
}