namespace Content.Shared.Disposal.Unit.Events;
///
/// Sent before the disposal unit flushes it's contents.
/// Allows adding tags for sorting and preventing the disposal unit from flushing.
///
public sealed class BeforeDisposalFlushEvent : CancellableEntityEventArgs
{
public readonly List Tags = new();
}