25 lines
894 B
C#
25 lines
894 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Dto.SMTP
|
|
{
|
|
public class SMTPCredentialDto
|
|
{
|
|
public int SMTPCredentialId { get; set; }
|
|
public byte SMTPTypeId { get; set; }
|
|
public string SMTPCredentialName { get; set; } = string.Empty;
|
|
public string SenderEmail { get; set; } = string.Empty;
|
|
public string SenderUserName { get; set; } = string.Empty;
|
|
public string SenderDisplayName { get; set; } = string.Empty;
|
|
public string Password { get; set; } = string.Empty;
|
|
public string Server { get; set; } = string.Empty;
|
|
public int OutgoingPort { get; set; }
|
|
public int IncomingPort { get; set; }
|
|
public bool IsActive { get; set; }
|
|
public string UserId { get; set; } = string.Empty;
|
|
}
|
|
}
|