Spaces:
Running
Running
File size: 411 Bytes
b9c7f0e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | using FlowAPI.Application.DTOs;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace FlowAPI.Application.Interfaces
{
public interface IAchievementService
{
Task<IEnumerable<UserAchievementDto>> GetUserAchievementsAsync(Guid userId);
Task SeedAchievementsAsync();
Task ProcessEventAsync(Guid userId, string eventName, int amount = 1);
}
}
|