2024-05-29 19:22:58 +00:00
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using Questionable.Model.V1.Converter;
|
2024-05-26 13:43:33 +00:00
|
|
|
|
|
2024-05-29 19:22:58 +00:00
|
|
|
|
namespace Questionable.Model.V1;
|
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(AethernetShortcutConverter))]
|
2024-06-14 09:37:33 +00:00
|
|
|
|
public sealed class AethernetShortcut
|
2024-05-26 13:43:33 +00:00
|
|
|
|
{
|
|
|
|
|
public EAetheryteLocation From { get; set; }
|
|
|
|
|
public EAetheryteLocation To { get; set; }
|
|
|
|
|
}
|