Fixing coord bug
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 58s
Deploy Promiscuity Locations API / deploy (push) Successful in 45s
k8s smoke test / test (push) Successful in 8s

This commit is contained in:
Zeeshaun 2026-03-13 13:00:50 -05:00
parent 097ef4a22c
commit d615527dcc

View File

@ -1,8 +1,12 @@
using MongoDB.Bson.Serialization.Attributes;
namespace CharacterApi.Models;
public class Coord
{
[BsonElement("x")]
public int X { get; set; }
[BsonElement("y")]
public int Y { get; set; }
}