2024-05-29 21:22:58 +02:00
|
|
|
|
using System.Text.Json.Serialization;
|
2024-08-02 18:30:21 +02:00
|
|
|
|
using Questionable.Model.Common;
|
|
|
|
|
using Questionable.Model.Questing.Converter;
|
2024-05-26 15:43:33 +02:00
|
|
|
|
|
2024-08-02 18:30:21 +02:00
|
|
|
|
namespace Questionable.Model.Questing;
|
2024-05-29 21:22:58 +02:00
|
|
|
|
|
|
|
|
|
[JsonConverter(typeof(AethernetShortcutConverter))]
|
2024-06-14 11:37:33 +02:00
|
|
|
|
public sealed class AethernetShortcut
|
2024-05-26 15:43:33 +02:00
|
|
|
|
{
|
|
|
|
|
public EAetheryteLocation From { get; set; }
|
|
|
|
|
public EAetheryteLocation To { get; set; }
|
|
|
|
|
}
|