Files
lct2025-lonolith/LctMonolith/Services/Models/CompetencyRewardModel.cs
2025-09-30 02:16:37 +03:00

9 lines
211 B
C#

namespace LctMonolith.Services.Models;
public class CompetencyRewardModel
{
public Guid CompetencyId { get; set; }
public int LevelDelta { get; set; }
public int ProgressPointsDelta { get; set; }
}