12 lines
303 B
C#
12 lines
303 B
C#
namespace EnvelopeGenerator.Application.DTOs
|
|
{
|
|
public record EnvelopeCertificateDto(
|
|
int Id,
|
|
int EnvelopeId,
|
|
string EnvelopeUuid,
|
|
string EnvelopeSubject,
|
|
int CreatorId,
|
|
string CreatorName,
|
|
string CreatorEmail,
|
|
int EnvelopeStatus);
|
|
} |