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

10 lines
253 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; }
}