using DigitalData.Core.Abstractions; using Microsoft.AspNetCore.Mvc; namespace EnvelopeGenerator.Application.DTOs { [ApiExplorerSettings(IgnoreApi = true)] public record UserReceiverDto( int Id, int UserId, int ReceiverId, string Name, string CompanyName, string JobTitle, DateTime AddedWhen) : IUnique; }