Add balance handling to card transactions and user accounts
Java CI / build (push) Successful in 1m11s
.NET+Docker CI/CD / Unit and Integration tests (push) Successful in 36s
.NET+Docker CI/CD / Push Docker image to ghcr.io (push) Failing after 33s

Signed-off-by: Dmitrii <computer@yawaflua.tech>

Took 6 minutes
This commit is contained in:
Dmitrii
2026-07-06 03:53:31 +03:00
parent 9238069d0e
commit d065c6897e
4 changed files with 24 additions and 10 deletions
@@ -9,6 +9,8 @@ public class Card
public string Name { get; set; }
public string SpworldsID { get; set; }
public string Token { get; set; }
public int Balance { get; set; } = 0;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
public DateTime UpdatedAt { get; set; }