roketto-launch/Models/TileGroupModel.cs

19 lines
484 B
C#
Raw Permalink Normal View History

2024-08-06 20:27:08 +00:00
using System.Collections.Generic;
using System.Drawing;
using System.Text.Json.Serialization;
namespace RokettoLaunch.Models
{
public class TileGroupModel
{
public string Title { get; set; }
public bool IsExpanded { get; set; } = false;
public List<TileModel> Items { get; set; } = new List<TileModel>();
[JsonConverter(typeof(RyzStudio.Text.Json.JsonSizeConverter))]
public Size GridSize { get; set; } = new Size(0, 0);
}
}