feat: DTOs and interfaces
This commit is contained in:
15
Models/DTO/PlayerProgress.cs
Normal file
15
Models/DTO/PlayerProgress.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using GamificationService.Models.Database;
|
||||
|
||||
namespace GamificationService.Models.DTO;
|
||||
|
||||
public class PlayerProgress
|
||||
{
|
||||
public Guid PlayerId { get; set; }
|
||||
public string PlayerName { get; set; } = string.Empty;
|
||||
public Rank? CurrentRank { get; set; }
|
||||
public int TotalExperience { get; set; }
|
||||
public int TotalMana { get; set; }
|
||||
public int CompletedMissions { get; set; }
|
||||
public int TotalAvailableMissions { get; set; }
|
||||
public Dictionary<string, int> SkillLevels { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user