survey-webapp/SurveyBackend/SurveyBackend.Core/Contexts/IUserContext.cs
shept 7a1078457d added UserContext for easy UserId getting
started writing custom services to implement users logic
2025-04-20 15:21:34 +05:00

6 lines
No EOL
97 B
C#

namespace SurveyBackend.Core.Contexts;
public interface IUserContext
{
int UserId { get; }
}