8 lines
No EOL
175 B
C#
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); |