00001 // 00002 // AdminRequest.h 00003 // DistributedCalendar 00004 // 00005 // Created by Jagdish on 8/31/10. 00006 // Copyright 2010 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 00036 #import <Foundation/Foundation.h> 00037 00038 00042 @interface AdminRequest : NSObject <NSCoding> { 00043 00044 NSInteger peerID; 00045 NSInteger version; 00046 id adminOperation; 00047 } 00048 00049 @property (nonatomic) NSInteger peerID; 00050 @property (nonatomic) NSInteger version; 00051 @property (nonatomic, retain) id adminOperation; 00052 00053 @end