using System.Text.Json.Serialization; namespace ModVersionChecker.repository.api.dto { public class SourceResponse { [JsonPropertyName("id")] public string Id { get; set; } = string.Empty; [JsonPropertyName("name")] public string Name { get; set; } = string.Empty; [JsonPropertyName("type")] public string Type { get; set; } = string.Empty; [JsonPropertyName("defaults")] public Dictionary Defaults { get; set; } = new Dictionary(); } }