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
13 lines
265 B
C#
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; }
|
|
}
|