Files
2026-09-20 16:21:15 +07:00

10 lines
202 B
C#

namespace mws.backend.dotnet.application.Common;
public interface ICurrentUser
{
Guid? UserId { get; }
string? Username { get; }
string? IpAddress { get; }
string? UserAgent { get; }
}