8 lines
216 B
C#
8 lines
216 B
C#
namespace EnvelopeGenerator.Application.DTOs.EnvelopeHistory
|
|
{
|
|
public record EnvelopeHistoryCreateDto(
|
|
int EnvelopeId,
|
|
string UserReference,
|
|
int Status,
|
|
DateTime? ActionDate);
|
|
} |