Files

9 lines
157 B
C#
Raw Permalink Normal View History

2025-07-12 21:33:44 +03:30
namespace HushianWebApp.Models
{
public class WindowSize
{
public int Width { get; set; }
public int Height { get; set; }
}
}