mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 09:22:33 +00:00
29 lines
626 B
Objective-C
29 lines
626 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
|
|
|
|
@class MPPluginVersion;
|
|
|
|
@interface MPPluginRepositoryItemVersionInfo : NSObject
|
|
|
|
@property (copy, readonly) MPPluginVersion *version;
|
|
|
|
+ (instancetype)versionInfoWithDict:(NSDictionary *)dict;
|
|
|
|
- (instancetype)initWithDict:(NSDictionary *)dict NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (BOOL)isCompatibleWithHostVersion:(MPPluginVersion *)hostVersion;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|