You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
438 B
22 lines
438 B
4 years ago
|
//
|
||
|
// WXYZ_FeedbackPhotoModel.h
|
||
|
// WXReader
|
||
|
//
|
||
|
// Created by Andrew on 2019/12/28.
|
||
|
// Copyright © 2019 Andrew. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Foundation/Foundation.h>
|
||
|
|
||
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
||
|
@interface WXYZ_FeedbackPhotoModel : NSObject
|
||
|
|
||
|
@property (nonatomic, copy) NSString *img; // 图片相对地址,这个值传递保存
|
||
|
|
||
|
@property (nonatomic, copy) NSString *show_img; // 图片显示地址
|
||
|
|
||
|
@end
|
||
|
|
||
|
NS_ASSUME_NONNULL_END
|