Files
mws.backend.dotnet/application/Common/ICurrentUser.cs
T

10 lines
202 B
C#
Raw Normal View History

2026-09-20 16:21:15 +07:00
namespace mws.backend.dotnet.application.Common;
public interface ICurrentUser
{
Guid? UserId { get; }
string? Username { get; }
string? IpAddress { get; }
string? UserAgent { get; }
}