9 lines
197 B
C#
9 lines
197 B
C#
namespace EnvelopeGenerator.Application.DTOs.Messaging
|
|
{
|
|
public record SmsResponse
|
|
{
|
|
public required bool Ok { get; init; }
|
|
|
|
public dynamic? Errors { get; init; }
|
|
}
|
|
} |