11 lines
230 B
C#
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;
|
|
}
|
|
} |