namespace Content.Shared._NF.Roles.Events;
///
/// Tries to dismiss a given interview.
///
public sealed class DismissInterviewEvent(EntityUid dismisser, bool reopenSlot) : EntityEventArgs
{
///
/// The person requesting the dismissal.
///
public readonly EntityUid Dismisser = dismisser;
///
/// If true, the slot for the job should be reopened.
///
public readonly bool ReopenSlot = reopenSlot;
}