Stop all bot for a user

This commit is contained in:
2025-08-06 16:03:42 +07:00
parent b70018ba15
commit 93a6f9fd9e
3 changed files with 107 additions and 0 deletions

View File

@@ -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;
}
}
}