Files
yinmeng-ios/xplan-ios/Base/MVP/Model/UserPhoto.h
2022-01-18 10:50:49 +08:00

19 lines
331 B
Objective-C

//
// UserPhoto.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/23.
//
#import "NSObject+MJExtension.h"
NS_ASSUME_NONNULL_BEGIN
@interface UserPhoto : NSObject
@property (copy, nonatomic) NSString *photoUrl;
@property (copy, nonatomic) NSString *pid;
@property (nonatomic, assign) BOOL isReview;
@end
NS_ASSUME_NONNULL_END