mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-04 22:43:07 +00:00
20 lines
654 B
C#
20 lines
654 B
C#
using KubernetesWorkflow;
|
|
using Utils;
|
|
|
|
namespace CodexPlugin
|
|
{
|
|
public class CodexStartupConfig
|
|
{
|
|
public string? NameOverride { get; set; }
|
|
public Location Location { get; set; }
|
|
public CodexLogLevel LogLevel { get; set; }
|
|
public ByteSize? StorageQuota { get; set; }
|
|
public bool MetricsEnabled { get; set; }
|
|
public MarketplaceInitialConfig? MarketplaceConfig { get; set; }
|
|
public string? BootstrapSpr { get; set; }
|
|
public int? BlockTTL { get; set; }
|
|
public TimeSpan? BlockMaintenanceInterval { get; set; }
|
|
public int? BlockMaintenanceNumber { get; set; }
|
|
}
|
|
}
|