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

9 lines
219 B
C#

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