using Microsoft.AspNetCore.Mvc;
namespace EnvelopeGenerator.Application.Common.Dto.Messaging;
///
///
///
[ApiExplorerSettings(IgnoreApi = true)]
public record SmsResponse
{
///
///
///
public required bool Ok { get; init; }
///
/// Returns !Ok
///
public bool Failed => !Ok;
///
///
///
public dynamic? Errors { get; init; }
}