using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PartSource.Automation.Models.Ftp { public class FtpFileInfo { public string Filename { get; set; } public DateTime Modified { get; set; } public long Size { get; set; } public FtpFileType FileType { get; set; } } }