Files
NotificationFlyout/src/TheXamlGuy.NotificationFlyout.Common/Helpers/TaskbarState.cs
T
2021-02-25 17:39:19 +00:00

11 lines
230 B
C#

using Windows.Foundation;
namespace TheXamlGuy.NotificationFlyout.Common.Helpers
{
public struct TaskbarState
{
public TaskbarPlacement Placement;
public Rect Rect;
public Screen Screen;
}
}