LANCommander/LANCommander.Launcher/Models/WindowRef.cs

10 lines
209 B
C#
Raw Permalink Normal View History

2025-10-26 17:05:49 -05: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; }
}