20 lines
450 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|