using System.Text.Json.Serialization; namespace ProofOfConcept.Models; public class ValidationModel { [JsonPropertyName("hostname")] public string HostName { get; set; } = ""; [JsonPropertyName("port")] public ushort Port { get; set; } = 443; [JsonPropertyName("ca")] public string CA { get; set; } = ""; }