Update User.cs

This commit is contained in:
yeziuku 2023-10-24 17:02:32 +08:00 committed by GitHub
parent bc64b3e897
commit 8f13505e15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,12 +22,12 @@ namespace Milimoe.FunGame.Core.Entity
public decimal Materials { get; set; } = 0; public decimal Materials { get; set; } = 0;
public decimal GameTime { get; set; } = 0; public decimal GameTime { get; set; } = 0;
public string AutoKey { get; set; } = ""; public string AutoKey { get; set; } = "";
public UserStatistics? Statistics { get; set; } = null; public UserStatistics Statistics { get; }
public Inventory? Inventory { get; set; } = null; public Inventory? Inventory { get; set; } = null;
internal User() internal User()
{ {
this.Statistics = new(this);
} }
internal User(long Id = 0, string Username = "", DateTime? RegTime = null, DateTime? LastTime = null, string Email = "", string NickName = "", bool IsAdmin = false, bool IsOperator = false, bool IsEnable = true, decimal Credits = 0, decimal Materials = 0, decimal GameTime = 0, string AutoKey = "") internal User(long Id = 0, string Username = "", DateTime? RegTime = null, DateTime? LastTime = null, string Email = "", string NickName = "", bool IsAdmin = false, bool IsOperator = false, bool IsEnable = true, decimal Credits = 0, decimal Materials = 0, decimal GameTime = 0, string AutoKey = "")
@ -45,6 +45,7 @@ namespace Milimoe.FunGame.Core.Entity
this.Materials = Materials; this.Materials = Materials;
this.GameTime = GameTime; this.GameTime = GameTime;
this.AutoKey = AutoKey; this.AutoKey = AutoKey;
this.Statistics = new(this);
} }
public override bool Equals(IBaseEntity? other) public override bool Equals(IBaseEntity? other)