//
// sectionContentBO.m
// ThePaperDemo
//
// Created by Scar on 14-9-18.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import "sectionContentBO.h"
@implementation sectionContentBO
@synthesize content;
@synthesize imageInfoList;
- (void)dealloc {
self.content = nil;
self.imageInfoList = nil;
}
@end
|