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

14 lines
426 B
C#
Raw Normal View History

2021-07-22 23:45:30 +00:00
using System.Collections.Generic;
using System.Drawing;
namespace FizzyLauncher.Models
{
public class TileGroupModel
{
public string Title { get; set; }
public bool IsExpanded { get; set; } = false;
public bool IsExclusive { get; set; } = false;
public List<TileModel> Items { get; set; } = new List<TileModel>();
public Size GridSize { get; set; } = new Size(0, 0);
}
}