8 lines
272 B
C#
8 lines
272 B
C#
namespace Pterodactyl.NETSDK.Models.Common.Allocations;
|
|
|
|
public class AllocationSettings
|
|
{
|
|
[JsonPropertyName("default")] public int DefaultAllocation { get; set; }
|
|
|
|
[JsonPropertyName("additional")] public List<int> AdditionalAllocations { get; set; } = new();
|
|
} |