import “<%= class_name %>.h”

@interface UNNotificationAttachment

-(NSURL *)URL;

@end

@interface UNNotificationContent

-(NSArray *)attachments;

@end

@interface UNNotificationRequest

-(UNNotificationContent *)content;

@end

@interface UNNotification

-(UNNotificationRequest *)request;

@end

@interface NCNotificationRequest

-(NSString *)threadIdentifier;
-(UNNotification *)userNotification;

@end

static void debugAlert(NSString *title, NSString *message){

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];

}

@implementation <%= class_name %>

@end