Files
mmorales.photo/backend/Presentation/Infraestructura/Responses/ExecutionError.cs
2025-08-28 16:01:55 +02:00

7 lines
160 B
C#

namespace Presentation.Infraestructura.Responses;
public sealed class ExecutionError(string message)
{
public string Message { get; set; } = message;
}