Files
schengen-visa/SchengenVisaApi/ApplicationLayer/InfrastructureServicesInterfaces/IUserIdProvider.cs
2024-08-26 11:33:31 +03:00

7 lines
193 B
C#

namespace ApplicationLayer.InfrastructureServicesInterfaces;
public interface IUserIdProvider
{
/// Returns identifier of authenticated user who sent the request
Guid GetUserId();
}