using FlowAPI.Domain.Enums; using System; namespace FlowAPI.Application.DTOs { public class AchievementDto { public Guid Id { get; set; } public string Title { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public string IconUrl { get; set; } = string.Empty; public string Category { get; set; } = string.Empty; public AchievementType Type { get; set; } public int TargetValue { get; set; } public int RewardPoints { get; set; } } }