|
//
// remotePushBO.m
// ThePaperDemo
//
// Created by scar1900 on 14/12/17.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "remotePushBO.h"
@implementation remotePushBO
@synthesize linkType,p,d,contId,aps,isComeFromRemote,isHavePushed,url;
- (void)dealloc {
self.linkType = nil;
self.p = nil;
self.d = nil;
self.contId = nil;
self.aps = nil;
self.isComeFromRemote = nil;
self.isHavePushed = nil;
self.url = nil;
}
@end
|