WLCustomNativeCollectionViewCell.m 457 Bytes
//
//  WLCustomNativeCollectionViewCell.m
//  DemoApp
//
//  Created by Nick Xirotyris on 4/2/16.
//  Copyright © 2016 YC. All rights reserved.
//

#import "WLCustomNativeCollectionViewCell.h"
#import "WLInboxItem.h"

@implementation WLCustomNativeCollectionViewCell

-(void)setupCustomCell:(WLInboxItem *)item {
    NSLog(@"Custom native TableView Cell setup method.");
    self.item = item;
}

-(WLInboxItem *)getInboxItem{
    return self.item;
}

@end