20 lines
465 B
Objective-C
20 lines
465 B
Objective-C
//
|
|
// RNBranchAgingItem.h
|
|
// RNBranch
|
|
//
|
|
// Created by Jimmy Dee on 3/8/17.
|
|
// Copyright © 2017 Branch Metrics. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface RNBranchAgingItem : NSObject
|
|
|
|
@property (nonatomic, readonly, nonnull) id item;
|
|
@property (nonatomic, readonly) NSTimeInterval accessTime;
|
|
|
|
- (instancetype _Nullable)init NS_UNAVAILABLE;
|
|
- (instancetype _Nonnull) initWithItem:(id _Nonnull)item NS_DESIGNATED_INITIALIZER;
|
|
|
|
@end
|