feat(*): Add SftpConfig model

This commit is contained in:
Josh Creek
2021-08-29 15:41:02 +01:00
parent 4c725873da
commit 4c5b3cb572
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YouTubeChannelDownloader.Models
{
public class SftpConfig
{
public string Host { get; set; }
public int Port { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
}
}