LANCommander/LANCommander.PowerShell/Models/Screen.cs
2024-07-03 17:53:00 -05:00

18 lines
456 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.PowerShell.Models
{
public class Screen
{
public bool Primary { get; set; }
public Bounds Bounds { get; set; }
public int Width { get; set; }
public int Height { get; set; }
public int RefreshRate { get; set; }
public int BitsPerPixel { get; set; }
}
}