mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 10:00:44 +08:00
11 lines
243 B
C#
11 lines
243 B
C#
using System.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace MaaBuilder.Models;
|
|
|
|
public record PackageMaaCore : IPackageConfiguration
|
|
{
|
|
[JsonPropertyName("include")]
|
|
public List<string> Include { get; set; }
|
|
}
|