femto-backend/Femto.Api/CurrentUserContext.cs
2025-05-21 13:55:55 +02:00

8 lines
153 B
C#

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