Files
Pterodactyl.NETSDK/Pterodactyl.NETSDK/Models/Application/Servers/StartupConfig.cs
2025-04-06 18:24:27 +08:00

7 lines
266 B
C#

namespace Pterodactyl.NETSDK.Models.Application.Servers;
public class StartupConfig
{
[JsonPropertyName("done")] public string? CompletionExpression { get; set; }
[JsonPropertyName("userInteraction")] public List<string>? UserInteractions { get; set; }
}