using DigitalData.Core.Abstractions; using Microsoft.AspNetCore.Mvc; namespace EnvelopeGenerator.Application.DTOs { [ApiExplorerSettings(IgnoreApi = true)] public record DocumentStatusDto( int Id, int EnvelopeId, int ReceiverId, int Status, DateTime? StatusChangedWhen, DateTime AddedWhen, DateTime? ChangedWhen) : IUnique { public string? Value { get; set; } }; }