begin application build overhaul
This commit is contained in:
17
Models/SshConfig.cs
Normal file
17
Models/SshConfig.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user