blob: 6519ef0fc075dcd156ccf55dc20010a0f08e45dc [file] [log] [blame]
#import "UGClientResponse.h"
@implementation UGClientResponse
@synthesize transactionID;
@synthesize transactionState;
@synthesize response;
@synthesize rawResponse;
-(id)init
{
self = [super init];
if ( self )
{
transactionID = -1;
transactionState = -1;
response = nil;
rawResponse = nil;
}
return self;
}
@end