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/NewFormModel.cs
Ray f06d311f40 WIP: Upgrade to .NET 8
Upgrade to RyzStudio8
Rewrite
2024-07-01 01:55:19 +01:00

10 lines
180 B
C#

namespace FizzyLauncher.Models
{
public class NewFormModel
{
public int ColumnCount { get; set; } = 8;
public int GroupCount { get; set; } = 1;
}
}