Add project files.
This commit is contained in:
14
Gateway/Models/ExecutionResponse.cs
Normal file
14
Gateway/Models/ExecutionResponse.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
namespace Gateway.Models;
|
||||
|
||||
public sealed class ExecutionResponse
|
||||
{
|
||||
public bool Ok { get; set; }
|
||||
public int? LogId { get; set; }
|
||||
public string Provider { get; set; } = "";
|
||||
public string Service { get; set; } = "";
|
||||
public string RequestId { get; set; } = "";
|
||||
public int ProviderStatus { get; set; }
|
||||
public long ElapsedMs { get; set; }
|
||||
public object? Result { get; set; }
|
||||
public object? Error { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user