| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
-
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CUP_POD_Mail_Reader
- {
- public class DownloadedFile
- {
- // public int Id { get; set; }
- public string FileName { get; set; }
- //public long FileSizeinLocal { get; set; }
- public long totalFileSizeinLocal { get; set; }
- // public long FileSizeinServer { get; set; }
- //public DateTime DownloadTime { get; set; }
- public DateTime? DownloadingStartTime { get; set; }
- //public string BatchNo { get; set; }
- public bool DownloadStatus { get; set; }
- //public List<DownloadedFile> listOfDownloadedFiles { get; set; }
- }
-
- public class MessageId
- {
- public string ProjectCode { get; set; }
- public string MailId { get; set; }
- public DateTime MailReadDate { get; set; }
- public bool Status { get; set; }
- public string Subject { get; set; }
- public string Environment { get; set; }
- public string body { get; set; }
-
- public string localdownloadpath { get; set; }
- }
-
- public class CCAddressList
- {
- public string CCAddress { get; set; }
- }
- public class UserCredentials
- {
- public string MailId { get; set; }
- public string Password { get; set; }
- }
- public class ToAddress
- {
- public string ToMailId { get; set; }
- }
- public class FTPDirectory
- {
- public string HostName { get; set; }
- public string SubDirectory { get; set; }
- public string ProjectCode { get; set; }
- }
- public class FTPCredentials
- {
- public string UserName { get; set; }
- public string Password { get; set; }
- }
- }
|