Zeeshaun bca8e3374a
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 47s
Deploy Promiscuity Character API / deploy (push) Successful in 59s
Deploy Promiscuity Inventory API / deploy (push) Successful in 47s
Deploy Promiscuity Locations API / deploy (push) Successful in 47s
k8s smoke test / test (push) Successful in 9s
Adding player sensing
2026-03-23 18:39:08 -05:00

13 lines
265 B
C#

namespace CharacterApi.Models;
public class VisibleCharacter
{
public string Id { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public Coord Coord { get; set; } = new();
public DateTime LastSeenUtc { get; set; }
}