18 lines
456 B
C#
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; }
|
|
}
|
|
}
|