12345678910111213141516171819202122232425 |
- //
- // YMInvitingPrizesSharePosterModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YMInvitingPrizesSharePosterModel : NSObject
- @property (nonatomic, copy) NSString *bottomColor;
- @property (nonatomic, copy) NSString *buttonEndColor;
- @property (nonatomic, copy) NSString *buttonStartColor;
- @property (nonatomic, copy) NSString *buttonText;
- @property (nonatomic, copy) NSString *content;
- @property (nonatomic, copy) NSString *contentColor;
- @property (nonatomic, copy) NSString *posterPicUrl;
- @property (nonatomic, copy) NSString *qCodeContent;
- @end
- NS_ASSUME_NONNULL_END
|