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