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