2021-09-27 12:42:46 +00:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
namespace Wabbajack.DTOs;
|
|
|
|
|
|
|
|
[JsonName("Links")]
|
|
|
|
public class LinksObject
|
2021-09-27 12:42:46 +00:00
|
|
|
{
|
2021-10-23 16:51:17 +00:00
|
|
|
[JsonPropertyName("image")] public string ImageUri { get; set; } = string.Empty;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
[JsonPropertyName("readme")] public string Readme { get; set; } = string.Empty;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
[JsonPropertyName("download")] public string Download { get; set; } = string.Empty;
|
2021-09-27 12:42:46 +00:00
|
|
|
|
2021-10-23 16:51:17 +00:00
|
|
|
[JsonPropertyName("machineURL")] public string MachineURL { get; set; } = string.Empty;
|
2022-03-29 04:26:45 +00:00
|
|
|
|
|
|
|
[JsonProperty("discordURL")] public string DiscordURL { get; set; } = string.Empty;
|
2021-09-27 12:42:46 +00:00
|
|
|
}
|