using System.Collections.Generic; using System.Text.Json.Serialization; namespace MaaBuilder.Models; public record PackageConfiguration { [JsonPropertyName("include")] public IEnumerable Include { get; init; } = new List(); [JsonPropertyName("exclude")] public IEnumerable Exclude { get; init; } = new List(); [JsonPropertyName("no_avx_bundle")] public string NoAvxBundle { get; init; } = string.Empty; }