10 lines
202 B
C#
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; }
|
|
}
|