38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
using EnvelopeGenerator.Domain.Entities;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeDto(
|
|
int Id,
|
|
int UserId,
|
|
int Status,
|
|
string Uuid,
|
|
string Message,
|
|
DateTime? ExpiresWhen,
|
|
DateTime? ExpiresWarningWhen,
|
|
DateTime AddedWhen,
|
|
DateTime? ChangedWhen,
|
|
string Title,
|
|
int? ContractType,
|
|
string Language,
|
|
bool? SendReminderEmails,
|
|
int? FirstReminderDays,
|
|
int? ReminderIntervalDays,
|
|
int? EnvelopeTypeId,
|
|
int? CertificationType,
|
|
bool? UseAccessCode,
|
|
int? FinalEmailToCreator,
|
|
int? FinalEmailToReceivers,
|
|
int? ExpiresWhenDays,
|
|
int? ExpiresWarningWhenDays,
|
|
bool DmzMoved,
|
|
ReceiverDto? User,
|
|
EnvelopeType? EnvelopeType,
|
|
string? EnvelopeTypeTitle,
|
|
bool IsAlreadySent,
|
|
string? StatusTranslated,
|
|
string? ContractTypeTranslated,
|
|
ICollection<EnvelopeDocument>? Documents,
|
|
ICollection<EnvelopeReceiver>? Receivers,
|
|
ICollection<EnvelopeHistory>? History);
|
|
} |