femto-backend/Femto.Common/ICurrentUserContext.cs
2025-07-19 14:10:01 +02:00

8 lines
No EOL
175 B
C#

namespace Femto.Common;
public interface ICurrentUserContext
{
CurrentUser? CurrentUser { get; }
}
public record CurrentUser(Guid Id, string Username, bool IsSuperUser);