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

20 lines
450 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FasdDesktopUi.Pages.DetailsPage.Models
{
public class DetailsPageDataHistoryCollectionGeometryModel
{
public int ColumnCount { get; set; }
public List<int> SubtitleCount { get; set; }
public DetailsPageDataHistoryCollectionGeometryModel()
{
}
}
}