Fixing coord bug
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user