bonus-material-app/nativeplugins/Mpaas-Scan/ios/mPaas.framework/Headers/MPaaSDVInfo.h

28 lines
483 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// MPaaSDVInfo.h
// mPaas
//
// Created by yangwei on 2021/4/2.
// Copyright © 2021 Alibaba. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface MPaaSDVInfo : NSObject
+ (MPaaSDVInfo *)sharedInstance;
@property(nonatomic, copy) NSString *dvCode;
@property(nonatomic, strong, readonly) NSString *deviceModel;
/**
* 若需要自定义dvCode可在category中重写此方法
*/
- (NSString *)dvCode;
@end
NS_ASSUME_NONNULL_END