9 lines
157 B
C#
9 lines
157 B
C#
namespace administration.Services
|
|
{
|
|
public interface IUserSessionService
|
|
{
|
|
int? UserId { get; }
|
|
string? UserName { get; }
|
|
}
|
|
}
|