Files
Pterodactyl.NETSDK/Pterodactyl.NETSDK/Models/Application/Nests/Eggs/LogConfig.cs
2025-04-06 18:24:27 +08:00

7 lines
231 B
C#

namespace Pterodactyl.NETSDK.Models.Application.Nests.Eggs;
public class LogConfig
{
[JsonPropertyName("custom")] public bool IsCustom { get; set; }
[JsonPropertyName("location")] public string? Location { get; set; }
}