femto-backend/Femto.Modules.Auth/Application/Services/SessionGenerator.cs
2025-05-14 23:53:00 +02:00

11 lines
No EOL
217 B
C#

using Femto.Modules.Auth.Models;
namespace Femto.Modules.Auth.Application.Services;
public class SessionGenerator
{
public UserSession GenerateSession()
{
throw new NotImplementedException();
}
}