58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
using System.Text.Json.Serialization;
|
|
using Prospect.Server.Api.Services.CloudScript.Models.Data;
|
|
|
|
namespace Prospect.Server.Api.Services.CloudScript.Models;
|
|
|
|
public class FYEnterMatchAzureFunction
|
|
{
|
|
[JsonPropertyName("optimalRegion")]
|
|
public string? OptimalRegion { get; set; }
|
|
|
|
[JsonPropertyName("isMatch")]
|
|
public bool IsMatch { get; set; }
|
|
|
|
[JsonPropertyName("bypassMaintenanceMode")]
|
|
public bool BypassMaintenanceMode { get; set; }
|
|
|
|
[JsonPropertyName("debugOption")]
|
|
public string? DebugOption { get; set; }
|
|
|
|
[JsonPropertyName("mapName")]
|
|
public string? MapName { get; set; }
|
|
|
|
[JsonPropertyName("squad_id")]
|
|
public string? SquadId { get; set; }
|
|
|
|
[JsonPropertyName("purchaseInsuranceRequest")]
|
|
public FYPurchaseInventoryInsuranceRequest PurchaseInventoryInsurances { get; set; }
|
|
|
|
[JsonPropertyName("loginNonce")]
|
|
public string LoginNonce { get; set; }
|
|
}
|
|
|
|
public class FYEnterMatchAzureFunctionCB
|
|
{
|
|
[JsonPropertyName("optimalRegion")]
|
|
public string? OptimalRegion { get; set; }
|
|
|
|
[JsonPropertyName("isMatch")]
|
|
public bool IsMatch { get; set; }
|
|
|
|
[JsonPropertyName("bypassMaintenanceMode")]
|
|
public bool BypassMaintenanceMode { get; set; }
|
|
|
|
[JsonPropertyName("debugOption")]
|
|
public string? DebugOption { get; set; }
|
|
|
|
[JsonPropertyName("mapName")]
|
|
public string? MapName { get; set; }
|
|
|
|
[JsonPropertyName("squad_id")]
|
|
public string? SquadId { get; set; }
|
|
|
|
[JsonPropertyName("purchaseInsuranceRequest")]
|
|
public FYPurchaseInventoryInsuranceRequest PurchaseInventoryInsurances { get; set; }
|
|
|
|
[JsonPropertyName("loginNonce")]
|
|
public string LoginNonce { get; set; }
|
|
} |