Stop all bot for a user
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using Managing.Domain.Users;
|
||||
using MediatR;
|
||||
|
||||
namespace Managing.Application.ManageBot.Commands
|
||||
{
|
||||
public class StopAllUserBotsCommand : IRequest<bool>
|
||||
{
|
||||
public User User { get; }
|
||||
|
||||
public StopAllUserBotsCommand(User user)
|
||||
{
|
||||
User = user;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user