Files
RealCV/src/RealCV.Application/Interfaces/IUserContextService.cs

7 lines
124 B
C#
Raw Normal View History

namespace RealCV.Application.Interfaces;
public interface IUserContextService
{
Task<Guid?> GetCurrentUserIdAsync();
}