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
39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace CraftingApi.Models;
|
|
|
|
[BsonIgnoreExtraElements]
|
|
public class CraftingRecipe
|
|
{
|
|
[BsonId]
|
|
[BsonElement("recipeKey")]
|
|
public string RecipeKey { get; set; } = string.Empty;
|
|
|
|
[BsonElement("name")]
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
[BsonElement("category")]
|
|
public string Category { get; set; } = "misc";
|
|
|
|
[BsonElement("stationType")]
|
|
public string StationType { get; set; } = "hand";
|
|
|
|
[BsonElement("inputs")]
|
|
public List<CraftingIngredient> Inputs { get; set; } = [];
|
|
|
|
[BsonElement("outputs")]
|
|
public List<CraftingIngredient> Outputs { get; set; } = [];
|
|
|
|
[BsonElement("craftTimeSeconds")]
|
|
public int CraftTimeSeconds { get; set; }
|
|
|
|
[BsonElement("enabled")]
|
|
public bool Enabled { get; set; } = true;
|
|
|
|
[BsonElement("createdUtc")]
|
|
public DateTime CreatedUtc { get; set; } = DateTime.UtcNow;
|
|
|
|
[BsonElement("updatedUtc")]
|
|
public DateTime UpdatedUtc { get; set; } = DateTime.UtcNow;
|
|
}
|