mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01: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; }
|
|
}
|
|
}
|