27 lines
425 B
Mathematica
27 lines
425 B
Mathematica
![]() |
// Copyright © 2019 650 Industries. All rights reserved.
|
||
|
|
||
|
#import <EXUpdates/EXUpdatesAsset.h>
|
||
|
#import <EXUpdates/EXUpdatesUtils.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@implementation EXUpdatesAsset
|
||
|
|
||
|
- (instancetype)initWithKey:(NSString *)key type:(NSString *)type
|
||
|
{
|
||
|
if (self = [super init]) {
|
||
|
_key = key;
|
||
|
_type = type;
|
||
|
}
|
||
|
return self;
|
||
|
}
|
||
|
|
||
|
- (nullable NSString *)filename
|
||
|
{
|
||
|
return _key;
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|