7 lines
124 B
C#
7 lines
124 B
C#
|
|
namespace TrueCV.Application.Interfaces;
|
||
|
|
|
||
|
|
public interface IUserContextService
|
||
|
|
{
|
||
|
|
Task<Guid?> GetCurrentUserIdAsync();
|
||
|
|
}
|