mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-21 05:59:32 +00:00
27 lines
587 B
Objective-C
27 lines
587 B
Objective-C
//
|
|
// MPPluginVersionInfo.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 04.10.18.
|
|
// Copyright © 2018 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MPPluginRepositoryItemVersionInfo : NSObject
|
|
|
|
@property (copy, readonly) NSString *version;
|
|
|
|
+ (instancetype)versionInfoWithDict:(NSDictionary *)dict;
|
|
|
|
- (instancetype)initWithDict:(NSDictionary *)dict NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (BOOL)isCompatibleWithHostVersion:(NSString *)hostVersion;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|