Remove incorrect NonSerialized attributes from POINT

pull/372/head
David Hall 2023-01-21 15:13:11 -07:00
parent 37c9b744d7
commit fcfeb0177d
1 changed files with 0 additions and 3 deletions

View File

@ -56,16 +56,13 @@ namespace Vanara.PInvoke
}
/// <summary>Specifies the <c>x</c>-coordinate of the point.</summary>
[NonSerialized]
public int x { get => x; set => x = value; }
/// <summary>Specifies the <c>y</c>-coordinate of the point.</summary>
[NonSerialized]
public int y { get => y; set => y = value; }
/// <summary>Gets a value indicating whether this <see cref="POINT"/> is empty.</summary>
/// <value><see langword="true"/> if both X and Y are 0; otherwise, <see langword="false"/>.</value>
[NonSerialized]
[Browsable(false)]
public bool IsEmpty => X == 0 && Y == 0;