|
//
// agreementBO.m
// ThePaperHD
//
// Created by scar1900 on 15/3/24.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import "agreementBO.h"
@implementation agreementBO
@synthesize title,updateTime,content;
- (void)dealloc {
self.title = nil;
self.updateTime = nil;
self.content = nil;
}
@end
|