case 4173

This commit is contained in:
2023-05-08 22:54:18 +00:00
parent 2116534503
commit ca82375bca
8 changed files with 354 additions and 218 deletions

View File

@@ -0,0 +1,17 @@
using AyaNova.Biz;
namespace AyaNova.Models
{
/// <summary>
/// Parameters for bulk operation batch-direct-smtp
/// </summary>
public class BatchDirectSMTPParams
{
public DataListSelectedRequest SelectedRequest { get; set; }
public string Subject { get; set; }
public string TextBody { get; set; }
public string HTMLBody { get; set; }
}
}