18 lines
385 B
C#
18 lines
385 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace UnifiedFarmLauncher.Models
|
|
{
|
|
public class SshConfig
|
|
{
|
|
[JsonPropertyName("host")]
|
|
public string Host { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("port")]
|
|
public int Port { get; set; } = 22;
|
|
|
|
[JsonPropertyName("args")]
|
|
public string Args { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|