All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 48s
Deploy Promiscuity Character API / deploy (push) Successful in 1m0s
Deploy Promiscuity Inventory API / deploy (push) Successful in 47s
Deploy Promiscuity Locations API / deploy (push) Successful in 1m0s
k8s smoke test / test (push) Successful in 9s
19 lines
452 B
C#
19 lines
452 B
C#
namespace LocationsApi.Models;
|
|
|
|
public class VisibleLocationResponse
|
|
{
|
|
public string? Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public Coord Coord { get; set; } = new();
|
|
|
|
public string BiomeKey { get; set; } = "plains";
|
|
|
|
public int Elevation { get; set; }
|
|
|
|
public VisibleLocationObjectResponse? LocationObject { get; set; }
|
|
|
|
public List<FloorInventoryItemResponse> FloorItems { get; set; } = [];
|
|
}
|