Files
UniVerse/backend/UniVerse.Application/DTOs/Gamification/GamificationDtos.cs
serega404 811b6ef51a
Backend CI / build-and-test (push) Successful in 52s
Frontend CI / build-and-check (push) Failing after 5m15s
🚀 Create and publish a Docker image / Detect changes in backend and frontend (push) Successful in 16s
🚀 Create and publish a Docker image / Build & publish backend image (push) Successful in 1m0s
🚀 Create and publish a Docker image / Build & publish frontend image (push) Successful in 32s
🚀 Create and publish a Docker image / Update stack on Portainer (push) Successful in 13s
fix: перенёс уровни в бд и пофиксид их отображение на фронте
2026-05-18 02:28:05 +03:00

19 lines
348 B
C#

using UniVerse.Domain.Enums;
namespace UniVerse.Application.DTOs.Gamification;
public record CoinTransactionDto(
int Id,
int Amount,
CoinTransactionType Type,
int? ReviewId,
int? AchievementId,
string? Description,
DateTime CreatedAt
);
public record LevelProgressDto(
int CurrentLevelXp,
int? NextLevelXp
);