LANCommander/LANCommander.Launcher/Models/WindowRef.cs

10 lines
209 B
C#
Raw Normal View History

2026-01-19 16:54:31 -06:00
using LANCommander.Launcher.Enums;
using Photino.NET;
namespace LANCommander.Launcher.Models;
public class WindowRef
{
public WindowType Type { get; set; }
public PhotinoWindow Window { get; set; }
}