1234567891011121314151617181920 |
- //
- // YMInvitingPrizesSharePosterCellViewModel.h
- // MSYOUPAI
- //
- // Created by YoMi on 2024/3/15.
- // Copyright © 2024 MS. All rights reserved.
- //
- #import "MSYOUPAIViewModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface YMInvitingPrizesSharePosterCellViewModel : MSYOUPAIViewModel
- /** 海报Url*/
- @property (nonatomic, copy, readonly) NSString *posterUrl;
- /** 二维码内容*/
- @property (nonatomic, strong, readonly) NSString *qrCodeContent;
- @end
- NS_ASSUME_NONNULL_END
|