Files
lct2025-lonolith/LctMonolith/Models/DTO/MissionCompletionResult.cs
2025-10-01 01:56:05 +03:00

12 lines
398 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();
}