10 lines
271 B
C#
10 lines
271 B
C#
namespace Gateway.Models;
|
|
|
|
public sealed class ProviderRequest
|
|
{
|
|
public string Operation { get; set; } = string.Empty;
|
|
public string? TenantId { get; set; }
|
|
public string? RequestId { get; set; }
|
|
public Dictionary<string, object>? Payload { get; set; }
|
|
}
|