|
//
// sponsorBO.m
// ThePaperDemo
//
// Created by Scar on 14-9-17.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "sponsorBO.h"
@implementation sponsorBO
@synthesize name,logo,link;
- (void)dealloc {
self.name = nil;
self.logo = nil;
self.link = nil;
}
@end
|