| 123456789101112131415161718192021 |
- //
- // MGAdvertModel.h
- // BuGuDY
- //
- // Created by 宋晨光 on 2019/12/9.
- // Copyright © 2019 宋晨光. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface MGAdvertModel : NSObject
- @property(nonatomic, copy) NSString *plug_ad_name;
- @property(nonatomic, copy) NSString *plug_ad_pic;
- @property(nonatomic, copy) NSString *plug_ad_url;
- @end
- NS_ASSUME_NONNULL_END
|