Zeeshaun c296ebc9cb
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 57s
Deploy Promiscuity Locations API / deploy (push) Successful in 44s
k8s smoke test / test (push) Successful in 7s
Fixing coord bug
2026-03-13 13:14:30 -05:00

9 lines
118 B
C#

namespace CharacterApi.Models;
public class Coord
{
public int X { get; set; }
public int Y { get; set; }
}