Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00035 #import <Foundation/Foundation.h>
00036
00037
00041 @interface Rule : NSObject <NSCoding> {
00042
00043 NSMutableArray* peers;
00044 NSMutableArray* eventIDs;
00045 NSMutableArray* eventTitles;
00046 BOOL readRight;
00047 BOOL deleteRight;
00048 BOOL editRight;
00049 BOOL rightAttribution;
00050 BOOL rightRevocation;
00051 }
00052
00053 @property (nonatomic, retain) NSMutableArray* peers;
00054 @property (nonatomic, retain) NSMutableArray* eventIDs;
00055 @property (nonatomic, retain) NSMutableArray* eventTitles;
00056 @property (nonatomic) BOOL readRight;
00057 @property (nonatomic) BOOL deleteRight;
00058 @property (nonatomic) BOOL editRight;
00059 @property (nonatomic) BOOL rightAttribution;
00060 @property (nonatomic) BOOL rightRevocation;
00061
00062 @end