namespace Cleanuparr.Infrastructure.Health;
///
/// Event arguments for a client dropped from the health cache
///
public class ClientHealthRemovedEventArgs : EventArgs
{
///
/// Gets the client ID
///
public Guid ClientId { get; }
///
/// Initializes a new instance of the class
///
/// The client ID
public ClientHealthRemovedEventArgs(Guid clientId)
{
ClientId = clientId;
}
}