Questionable/Questionable.Model/Common/AethernetShortcut.cs

12 lines
315 B
C#
Raw Normal View History

using System.Text.Json.Serialization;
2024-08-02 18:30:21 +02:00
using Questionable.Model.Questing.Converter;
2024-05-26 15:43:33 +02:00
namespace Questionable.Model.Common;
[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; }
}