femto-backend/Femto.Api/CurrentUserContext.cs
2025-05-15 17:47:20 +02:00

8 lines
No EOL
152 B
C#

using Femto.Common;
namespace Femto.Api;
internal class CurrentUserContext : ICurrentUserContext
{
public CurrentUser? CurrentUser { get; set; }
}