8 lines
266 B
C#
8 lines
266 B
C#
namespace MoonlightServers.Api.Infrastructure.Database.Json;
|
|
|
|
public class InstallationConfig
|
|
{
|
|
public string DockerImage { get; set; } = string.Empty;
|
|
public string Shell { get; set; } = string.Empty;
|
|
public string Script { get; set; } = string.Empty;
|
|
} |