7 lines
266 B
C#
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; }
|
|
} |