diff --git a/Metadata/Resume.cs b/Metadata/Resume.cs index 89516b62f..8dcdcf745 100644 --- a/Metadata/Resume.cs +++ b/Metadata/Resume.cs @@ -38,11 +38,18 @@ using System; using System.Collections.Generic; +using System.Text.Json.Serialization; using System.Xml.Serialization; using Schemas; namespace Aaru.CommonTypes.Metadata; +public class ResumeJson +{ + [JsonPropertyName("AaruResume")] + public Resume Resume { get; init; } +} + /// Information that allows to resume a dump [Serializable, XmlRoot("DicResume", Namespace = "", IsNullable = false)] public class Resume