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

14 lines
280 B
C#

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