16 lines
523 B
C#
16 lines
523 B
C#
using System.Text.Json.Serialization;
|
|
using Prospect.Server.Api.Services.CloudScript.Models.Data;
|
|
|
|
namespace Prospect.Server.Api.Services.CloudScript.Models;
|
|
|
|
public class FYGetCraftingInProgressDataResult
|
|
{
|
|
[JsonPropertyName("userId")]
|
|
public string UserId { get; set; } = null!;
|
|
|
|
[JsonPropertyName("error")]
|
|
public string Error { get; set; } = null!;
|
|
|
|
[JsonPropertyName("itemCurrentlyBeingCrafted")]
|
|
public FYItemCurrentlyBeingCrafted ItemCurrentlyBeingCrafted { get; set; } = null!;
|
|
} |