mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-02 14:34:11 +02:00
9 lines
178 B
C#
9 lines
178 B
C#
using System.Drawing;
|
|
|
|
namespace TweetLib.Utils.Data {
|
|
public sealed class WindowState {
|
|
public Rectangle Bounds { get; set; }
|
|
public bool IsMaximized { get; set; }
|
|
}
|
|
}
|