21 lines
273 B
C#
21 lines
273 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Common;
|
|
|
|
public record XY
|
|
{
|
|
[JsonPropertyName("x")]
|
|
public double? X
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
[JsonPropertyName("y")]
|
|
public double? Y
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|