@implementation MsgBoxClosedEvent { BOOL _result; } @synthesize result = _result; - (id)initWithType:(NSString *)type result:(BOOL)result { if ((self = [super initWithType:type bubbles:NO])) { _result = result; } return self; } @end