Questionable/Questionable.Model/V1/AethernetShortcut.cs

12 lines
305 B
C#
Raw Permalink Normal View History

using System.Text.Json.Serialization;
using Questionable.Model.V1.Converter;
2024-05-26 13:43:33 +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; }
}