2024-07-03 17:53:00 -05:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
2024-08-05 18:02:01 -05:00
|
|
|
|
namespace LANCommander.SDK.PowerShell.Models
|
2024-07-03 17:53:00 -05:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|