Files
leanote-ios/Leanote/info/CellInfo.h
2015-08-21 23:49:41 +08:00

26 lines
546 B
Objective-C

//
// File.h
//
//
// Created by life on 15/6/14.
//
//
#import <Foundation/Foundation.h>
#import "Notebook.h"
#import "Tag.h"
@interface CellInfo : NSObject
@property (nonatomic, retain) NSString * idd;
@property (nonatomic, retain) NSString * title;
@property (nonatomic, retain) NSNumber * count;
@property (nonatomic, retain) NSNumber * status;
@property (nonatomic, retain) NSDate * updatedTime;
@property (nonatomic) BOOL isDirty;
+ (CellInfo *) getCellInfo:(Notebook *) notebook;
+ (CellInfo *) getCellInfoByTag:(Tag *) tag;
@end