25 lines
636 B
C#
25 lines
636 B
C#
namespace DigitalData.EmailProfilerGateway.Application.DTOs
|
|
{
|
|
public record EmailOutDto(
|
|
int Guid,
|
|
int ReminderTypeId,
|
|
int SendingProfile,
|
|
int ReferenceId,
|
|
string ReferenceString,
|
|
int? EntityId,
|
|
int WfId,
|
|
string WfReference,
|
|
string EmailAddress,
|
|
string EmailSubj,
|
|
string EmailBody,
|
|
string EmailAttmt1,
|
|
DateTime? EmailSent,
|
|
string Comment,
|
|
string AddedWho,
|
|
DateTime? AddedWhen,
|
|
string ChangedWho,
|
|
DateTime? ChangedWhen,
|
|
DateTime? ErrorTimestamp,
|
|
string ErrorMsg
|
|
);
|
|
} |