Lots of data and model setup

This commit is contained in:
gamer147
2025-05-18 02:27:17 -04:00
parent 79505e0c1a
commit b2024af852
77 changed files with 81988 additions and 433 deletions

View File

@@ -7,7 +7,7 @@ namespace SVSim.EmulatedEntrypoint.Models.Dtos;
public class UserCurrency
{
[Key("viewer_id")]
public ulong ViewerId { get; set; }
public long ViewerId { get; set; }
[Key("crystal")]
public ulong Crystals { get; set; }
[Key("crystal_android")]
@@ -40,7 +40,7 @@ public class UserCurrency
this.Crystals = currency.Crystals;
this.RedEther = currency.RedEther;
this.LifeTotalCrystals = currency.LifeTotalCrystals;
this.TotalCrystals = currency.LifeTotalCrystals;
this.TotalCrystals = currency.Crystals;
this.Rupees = currency.Rupees;
this.FreeCrystals = currency.FreeCrystals;
this.AndroidCrystals = currency.AndroidCrystals;