forked from liza/Questionable
12 lines
315 B
C#
12 lines
315 B
C#
using System.Text.Json.Serialization;
|
|
using Questionable.Model.Questing.Converter;
|
|
|
|
namespace Questionable.Model.Common;
|
|
|
|
[JsonConverter(typeof(AethernetShortcutConverter))]
|
|
public sealed class AethernetShortcut
|
|
{
|
|
public EAetheryteLocation From { get; set; }
|
|
public EAetheryteLocation To { get; set; }
|
|
}
|