9 lines
193 B

using Service.Execute.SwapException;
namespace Service.Execute;
public class ExceptionData
{
public ExceptionReason ExceptionReason { get; set; }
public string? Msg { get; set; }
}