Files
UFL/Models/SshConfig.cs

18 lines
385 B
C#
Raw Normal View History

2025-12-17 15:34:34 -07:00
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;
}
}