add nullableUserId to IUserContext.cs

This commit is contained in:
Вячеслав 2025-05-30 23:54:45 +05:00
parent db012aed92
commit 77cfacb95e
2 changed files with 16 additions and 4 deletions

View file

@ -3,4 +3,5 @@ namespace SurveyBackend.Core.Contexts;
public interface IUserContext
{
int UserId { get; }
int? NullableUserId { get; }
}