23 lines
432 B
C#
23 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Configuration;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PartSource.Automation.Models.Configuration
|
|
{
|
|
public class FtpConfiguration
|
|
{
|
|
public string Url { get; set; }
|
|
|
|
public string Destination { get; set; }
|
|
|
|
public string Username { get; set; }
|
|
|
|
public string Password { get; set; }
|
|
|
|
public int Port { get; set; }
|
|
}
|
|
}
|