mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
17 lines
472 B
C#
17 lines
472 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MaaBuilder.Models;
|
|
|
|
public record PackageConfiguration
|
|
{
|
|
[JsonPropertyName("include")]
|
|
public IEnumerable<string> Include { get; init; } = new List<string>();
|
|
|
|
[JsonPropertyName("exclude")]
|
|
public IEnumerable<string> Exclude { get; init; } = new List<string>();
|
|
|
|
[JsonPropertyName("no_avx_bundle")]
|
|
public string NoAvxBundle { get; init; } = string.Empty;
|
|
}
|