FlowAPI / FlowAPI.Application /DTOs /UserAchievementDto.cs
danylokhodus's picture
init
b9c7f0e
Raw
History Blame Contribute Delete
396 Bytes
using System;
namespace FlowAPI.Application.DTOs
{
public class UserAchievementDto
{
public Guid Id { get; set; }
public Guid AchievementId { get; set; }
public AchievementDto Achievement { get; set; } = default!;
public int CurrentValue { get; set; }
public bool IsUnlocked { get; set; }
public DateTime? UnlockedAt { get; set; }
}
}