All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 48s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Crafting API / deploy (push) Successful in 1m9s
Deploy Promiscuity Inventory API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 48s
Deploy Promiscuity Mail API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 8s
19 lines
459 B
C#
19 lines
459 B
C#
namespace CraftingApi.Models;
|
|
|
|
public class UpsertCraftingRecipeRequest
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Category { get; set; } = "misc";
|
|
|
|
public string StationType { get; set; } = "hand";
|
|
|
|
public List<CraftingIngredient> Inputs { get; set; } = [];
|
|
|
|
public List<CraftingIngredient> Outputs { get; set; } = [];
|
|
|
|
public int CraftTimeSeconds { get; set; }
|
|
|
|
public bool Enabled { get; set; } = true;
|
|
}
|