mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-23 00:35:22 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
16 lines
393 B
C#
16 lines
393 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Daybreak.Shared.Models.Browser;
|
|
|
|
public sealed class OnContextMenuPayload
|
|
{
|
|
[JsonProperty(nameof(X))]
|
|
public double X { get; set; }
|
|
[JsonProperty(nameof(Y))]
|
|
public double Y { get; set; }
|
|
[JsonProperty(nameof(Selection))]
|
|
public string? Selection { get; set; }
|
|
[JsonProperty(nameof(Url))]
|
|
public string? Url { get; set; }
|
|
}
|