NonInventPurchasingSystem/CPRNIMS.Infrastructure/Dto/Canvass/Request/SupplierEmailRequest.cs
2026-04-21 11:59:21 +08:00

30 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.Dto.Canvass.Request
{
public class SupplierEmailRequest
{
public string Subject { get; set; } = string.Empty;
public string SenderEmail { get; set; } = string.Empty;
public string Recipient { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public int OutGoingPort { get; set; } = 587;
public string Password { get; set; } = string.Empty;
public string Token { get; set; } = string.Empty;
public string Server { get; set; } = string.Empty;
public string CC { get; set; } = string.Empty;
public bool IsCanvass { get; set; }
public string Purchaser { get; set; }=string.Empty;
public string UserName { get; set; } = string.Empty;
public string FormLink { get; set; } = string.Empty;
public string EmailAddress { get; set; } = string.Empty;
public string SupplierName { get; set; } = string.Empty;
public bool IsSuccess { get; set; }
public string AttachPath { get; set; } = string.Empty;
}
}