using DigitalData.Core.Abstractions; using Microsoft.AspNetCore.Mvc; namespace EnvelopeGenerator.Application.DTOs { [ApiExplorerSettings(IgnoreApi = true)] public record EnvelopeDocumentDto ( int Id, int EnvelopeId, DateTime AddedWhen, byte[]? ByteData = null, IEnumerable? Elements = null ) : IUnique; }