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/LauncherSession.cs

10 lines
256 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace AppLauncher.Models
{
public class LauncherSession
{
public int DefaultHeight { get; set; } = 280;
public List<TileGroupModel> Groups { get; set; } = new List<TileGroupModel>();
}
}