Files
lct2025-lonolith/LctMonolith/Models/DTO/MissionCompletionResult.cs
2025-09-30 22:46:22 +03:00

12 lines
387 B
C#

namespace LctMonolith.Models.DTO;
public class MissionCompletionResult
{
public bool Success { get; set; }
public string Message { get; set; } = string.Empty;
public int ExperienceGained { get; set; }
public int ManaGained { get; set; }
public List<SkillProgress> SkillsProgress { get; set; } = new();
public List<Guid> UnlockedMissions { get; set; } = new();
}