12 lines
375 B
C#
12 lines
375 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Prospect.Server.Api.Services.CloudScript.Models.Data;
|
|
|
|
public class FYFactionContractData
|
|
{
|
|
[JsonPropertyName("contractId")]
|
|
public string ContractId { get; set; } = null!;
|
|
|
|
[JsonPropertyName("contractIsLockedDueToLowFactionReputation")]
|
|
public bool ContractIsLockedDueToLowFactionReputation { get; set; }
|
|
} |