mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-09-21 02:33:52 -04:00
22 lines
615 B
C#
22 lines
615 B
C#
namespace Cleanuparr.Infrastructure.Health;
|
|
|
|
/// <summary>
|
|
/// Event arguments for an arr instance dropped from the health cache
|
|
/// </summary>
|
|
public class ArrInstanceHealthRemovedEventArgs : EventArgs
|
|
{
|
|
/// <summary>
|
|
/// Gets the arr instance ID
|
|
/// </summary>
|
|
public Guid InstanceId { get; }
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="ArrInstanceHealthRemovedEventArgs"/> class
|
|
/// </summary>
|
|
/// <param name="instanceId">The arr instance ID</param>
|
|
public ArrInstanceHealthRemovedEventArgs(Guid instanceId)
|
|
{
|
|
InstanceId = instanceId;
|
|
}
|
|
}
|