FtpConfig
public class FtpConfig { [Key] public Byte FTPConfigId { get; set; } public string? HostName { get; set; } public string? UserName { get; set; } public string? Password { get; set; } public string? InputPath { get; set; } public string? InputArchivePath { get; set; } public string? RemoteInputPath { get; set; } public string? RemoteInputArchivePath { get; set; } public string? ErrorPath { get; set; } public string? RemoteErrorPath { get; set; } public string? OutputPath { get; set; } public string? OutPutArchivePath { get; set; } public string? RemoteOutPutPath { get; set; } public bool ToProcess { get; set; } public string? OutPutHostName { get; set; } public string? OutPutUserName { get; set; } public string? OutPutPassword { get; set; } public string? RemoteActivityFilePath { get; set; } public string? RemoteActivityFileArchivePath { get; set; } public string? SplitFileOutputPath { get; set; } public string? SplitFileOutputArchivetPath { get; set; } public string? RemoteSplitFilePath { get; set; } public string? TestFileOutputPath { get; set; } public string? TestFileOutputArchivetPath { get; set; } public string? RemoteInputUploadFormPath { get; set; } }
Leave a Comment