16 lines
410 B
C#
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>();
|
|
}
|
|
}
|