9 lines
157 B
C#
9 lines
157 B
C#
using System;
|
|
|
|
namespace Knot.Modules.Conversations.Application.Abstractions;
|
|
|
|
public interface IUserStatusService
|
|
{
|
|
bool IsUserOnline(string userId);
|
|
}
|