Files
AIPS/dotnet/AipsCore/Application/Common/Authentication/LoginResult.cs
Veljko Tosic 8253e8bc3f Fixes
2026-02-12 22:04:48 +01:00

6 lines
195 B
C#

using AipsCore.Domain.Models.User;
using AipsCore.Domain.Models.User.External;
namespace AipsCore.Application.Common.Authentication;
public record LoginResult(User User, IList<UserRole> Roles);