8 lines
158 B
C#
8 lines
158 B
C#
namespace Femto.Common;
|
|
|
|
public interface ICurrentUserContext
|
|
{
|
|
CurrentUser? CurrentUser { get; }
|
|
}
|
|
|
|
public record CurrentUser(Guid Id, string Username);
|