mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-13 05:55:39 +02:00
15 lines
333 B
C#
15 lines
333 B
C#
using System;
|
|
|
|
namespace Ninjacrab.PersistentWindows.Common.Models
|
|
{
|
|
public class WindowsPositionInfo
|
|
{
|
|
public IntPtr hwnd;
|
|
public IntPtr hwndInsertAfter;
|
|
public int Left;
|
|
public int Top;
|
|
public int Width;
|
|
public int Height;
|
|
public int Flags;
|
|
}
|
|
}
|