Push changes
This commit is contained in:
+3
-3
@@ -4,9 +4,9 @@ namespace Prospect.Server.Api.Services.CloudScript.Models.Data;
|
||||
|
||||
public class FYActiveContractPlayerData
|
||||
{
|
||||
[JsonPropertyName("contractId")]
|
||||
public string ContractId { get; set; } = null!;
|
||||
[JsonPropertyName("contractId")]
|
||||
public string ContractID { get; set; } = null!;
|
||||
|
||||
[JsonPropertyName("progress")]
|
||||
public List<int> Progress { get; set; } = null!;
|
||||
public int[] Progress { get; set; } = null!;
|
||||
}
|
||||
@@ -6,7 +6,4 @@ public class FYFactionContractData
|
||||
{
|
||||
[JsonPropertyName("contractId")]
|
||||
public string ContractId { get; set; } = null!;
|
||||
|
||||
[JsonPropertyName("contractIsLockedDueToLowFactionReputation")]
|
||||
public bool ContractIsLockedDueToLowFactionReputation { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using Prospect.Server.Api.Services.CloudScript.Models.Data;
|
||||
|
||||
public class FYTechTreeNodeStatus {
|
||||
[JsonPropertyName("nodeId")]
|
||||
public string NodeID { get; set; }
|
||||
[JsonPropertyName("level")]
|
||||
public int Level { get; set; }
|
||||
[JsonPropertyName("upgradeStartedTime")]
|
||||
public FYTimestamp UpgradeStartedTime { get; set; }
|
||||
};
|
||||
+15
-9
@@ -5,14 +5,20 @@ namespace Prospect.Server.Api.Services.CloudScript.Models.Data;
|
||||
public class FYVivoxJoinTokenRequest
|
||||
{
|
||||
[JsonPropertyName("userName")]
|
||||
public string? Username { get; set; }
|
||||
|
||||
public string Username { get; set; }
|
||||
|
||||
[JsonPropertyName("channel")]
|
||||
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)]
|
||||
public string? Channel { get; set; }
|
||||
|
||||
// TODO: channelType
|
||||
// TODO: hasText
|
||||
// TODO: hasAudio
|
||||
// TODO: channelId
|
||||
public string Channel { get; set; }
|
||||
|
||||
[JsonPropertyName("hasText")]
|
||||
public bool HasText { get; set; }
|
||||
|
||||
[JsonPropertyName("hasAudio")]
|
||||
public bool HasAudio { get; set; }
|
||||
|
||||
[JsonPropertyName("channelType")]
|
||||
public int ChannelType { get; set; }
|
||||
|
||||
[JsonPropertyName("channelId")]
|
||||
public string ChannelID { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user