/* HBQueueActionItem.h $
This file is part of the HandBrake source code.
Homepage: .
It may be used under the terms of the GNU General Public License. */
#import
#import "HBQueueItem.h"
NS_ASSUME_NONNULL_BEGIN
@interface HBQueueActionStopItem : NSObject
/// Current state of the item.
@property (nonatomic) HBQueueItemState state;
/// The title of the item.
@property (nonatomic, readonly) NSString *title;
@end
NS_ASSUME_NONNULL_END