This repository has been archived on 2024-08-06. You can view files and clone it, but cannot push or open issues or pull requests.
linear-app-launcher/Models/TileGroupModel.cs

19 lines
484 B
C#
Raw Normal View History

using System.Collections.Generic;
2021-07-22 23:45:30 +00:00
using System.Drawing;
2021-07-23 13:38:07 +00:00
using System.Text.Json.Serialization;
2021-07-22 23:45:30 +00:00
2024-07-06 15:30:37 +00:00
namespace RokettoLaunch.Models
2021-07-22 23:45:30 +00:00
{
public class TileGroupModel
{
public string Title { get; set; }
2021-07-23 13:38:07 +00:00
2021-07-22 23:45:30 +00:00
public bool IsExpanded { get; set; } = false;
2021-07-23 13:38:07 +00:00
2021-07-22 23:45:30 +00:00
public List<TileModel> Items { get; set; } = new List<TileModel>();
2021-07-23 13:38:07 +00:00
[JsonConverter(typeof(RyzStudio.Text.Json.JsonSizeConverter))]
2021-07-22 23:45:30 +00:00
public Size GridSize { get; set; } = new Size(0, 0);
2021-07-22 23:45:30 +00:00
}
}