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

10 lines
244 B
C#

namespace LctMonolith.Models.DTO;
public class SkillProgress
{
public Guid SkillId { get; set; }
public string SkillTitle { get; set; } = string.Empty;
public int PreviousLevel { get; set; }
public int NewLevel { get; set; }
}