|
//
// newsVO.h
// ThePaperDemo
//
// Created by Scar on 14-9-4.
// Copyright (c) 2014年 scar1900. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface newsVO : NSObject {
NSString *imgUrl;
NSString *abstract;
NSString *time;
NSString *numOfComments;
NSString *imageID;
NSString *isHeadNews;
}
@property (nonatomic, copy) NSString *imgUrl;
@property (nonatomic, copy) NSString *abstract;
@property (nonatomic, copy) NSString *time;
@property (nonatomic, copy) NSString *numOfComments;
@property (nonatomic, copy) NSString *imageID;
@property (nonatomic, copy) NSString *isHeadNews;
@end
|