9 lines
234 B
C#
9 lines
234 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!;
|
|
} |