Files
schengen-visa/ApplicationLayer/InfrastructureServicesInterfaces/IUserIdProvider.cs
2025-10-05 14:32:06 +03:00

7 lines
193 B
C#

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