9 lines
164 B
C#
9 lines
164 B
C#
using GamificationService.Models;
|
|
|
|
namespace GamificationService.Services.CurrentUsers;
|
|
|
|
public interface ICurrentUserService
|
|
{
|
|
UserSession GetCurrentUser();
|
|
}
|