FlowAPI / FlowAPI.Application /DTOs /AchievementDto.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
547 Bytes
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; }
}
}