16 lines
377 B
C#
16 lines
377 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Input;
|
|
|
|
namespace FasdDesktopUi.Pages.DetailsPage.Models
|
|
{
|
|
public class DetailsPageWidgetGeometryModel
|
|
{
|
|
public int WidgetTitleCount { get; set; }
|
|
public int WidgetDetailCount { get; set; }
|
|
}
|
|
}
|