Files
yinmeng-ios/xplan-ios/Base/MVP/Model/UserPhoto.h

18 lines
278 B
C
Raw Normal View History

2021-09-23 18:38:33 +08:00
//
// UserPhoto.h
// xplan-ios
//
// Created by 冯硕 on 2021/9/23.
//
#import "BaseObject.h"
NS_ASSUME_NONNULL_BEGIN
@interface UserPhoto : BaseObject
@property (copy, nonatomic) NSString *photoUrl;
@property (copy, nonatomic) NSString *pid;
@end
NS_ASSUME_NONNULL_END