Questionable/Questionable.Model/Common/AethernetShortcut.cs

12 lines
315 B
C#
Raw Permalink Normal View History

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