World microapi
Deploy Promiscuity Auth API / deploy (push) Successful in 49s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Crafting API / deploy (push) Successful in 47s
Deploy Promiscuity Inventory API / deploy (push) Successful in 47s
Deploy Promiscuity Locations API / deploy (push) Successful in 48s
Deploy Promiscuity Mail API / deploy (push) Successful in 46s
k8s smoke test / test (push) Has been cancelled

This commit is contained in:
Zeeshaun
2026-04-01 19:53:18 +00:00
parent 94473ab1b0
commit 2bed6aae4f
12 changed files with 328 additions and 2 deletions
@@ -0,0 +1,18 @@
namespace WorldApi.Models;
public class WorldCycleResponse
{
public DateTime CurrentUtc { get; set; }
public double DayLengthSeconds { get; set; }
public double TimeOfDaySeconds { get; set; }
public double TimeOfDayNormalized { get; set; }
public string Phase { get; set; } = "day";
public bool IsDay { get; set; }
public double LightLevel { get; set; }
}