This commit introduces the `[ApiExplorerSettings(IgnoreApi = true)]` attribute to various DTO classes to exclude them from API documentation. The `using Microsoft.AspNetCore.Mvc;` directive has been added to several files to support ASP.NET Core MVC features. Additionally, comments in `HistoryController.cs` have been reformatted for clarity, and `LocalizationController.cs` has been updated with standard API controller attributes. These changes improve code organization and maintain cleaner API documentation.
26 lines
801 B
C#
26 lines
801 B
C#
using DigitalData.Core.Abstractions;
|
|
using DigitalData.Core.DTO;
|
|
using DigitalData.EmailProfilerDispatcher.Abstraction.Attributes;
|
|
using EnvelopeGenerator.Application.DTOs.EnvelopeReceiver;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace EnvelopeGenerator.Application.DTOs.Receiver;
|
|
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
public record ReceiverReadDto(
|
|
int Id,
|
|
string EmailAddress,
|
|
string Signature,
|
|
DateTime AddedWhen
|
|
) : BaseDTO<int>(Id), IUnique<int>
|
|
{
|
|
[JsonIgnore]
|
|
public IEnumerable<EnvelopeReceiverBasicDto>? EnvelopeReceivers { get; init; }
|
|
|
|
public string? LastUsedName => EnvelopeReceivers?.LastOrDefault()?.Name;
|
|
|
|
public string? TotpSecretkey { get; set; } = null;
|
|
|
|
public DateTime? TfaRegDeadline { get; set; }
|
|
}; |