mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-04-18 13:15:48 +00:00
26 lines
450 B
Objective-C
26 lines
450 B
Objective-C
//
|
|
// S3Owner.m
|
|
// Backup
|
|
//
|
|
// Created by Stefan Reitshamer on 4/12/09.
|
|
// Copyright 2009 PhotoMinds LLC. All rights reserved.
|
|
//
|
|
|
|
#import "S3Owner.h"
|
|
|
|
|
|
@implementation S3Owner
|
|
- (id)initWithDisplayName:(NSString *)dn idString:(NSString *)ids {
|
|
if (self = [super init]) {
|
|
displayName = [dn copy];
|
|
idString = [ids copy];
|
|
}
|
|
return self;
|
|
}
|
|
- (NSString *)displayName {
|
|
return displayName;
|
|
}
|
|
- (NSString *)idString {
|
|
return idString;
|
|
}
|
|
@end
|