mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
16 lines
360 B
C#
16 lines
360 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace MaaBuilder.Models;
|
|
|
|
public record Package
|
|
{
|
|
[JsonPropertyName("name_template")]
|
|
public string NameTemplate { get; init; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public string PackageType { get; init; }
|
|
|
|
[JsonPropertyName("configuration")]
|
|
public PackageConfiguration Configuration { get; init; }
|
|
}
|