123456789101112131415161718192021222324252627 |
- //
- // YOUPAILZShareApplicationModel.m
- // VQU
- //
- // Created by CY on 2021/9/28.
- // Copyright © 2021 MS. All rights reserved.
- //
- #import "YOUPAILZShareApplicationModel.h"
- @implementation YOUPAILZShareApplicationModel
- + (NSDictionary *)mj_replacedKeyFromPropertyName
- {
- return @{
- @"youpaipposterPicUrl":@"posterPicUrl",
- @"youpaipbottomColor":@"bottomColor",
- @"youpaipcontent":@"content",
- @"youpaipcontentColor":@"contentColor",
- @"youpaipqCodeContent":@"qCodeContent",
- @"youpaipbuttonStartColor":@"buttonStartColor",
- @"youpaipbuttonEndColor":@"buttonEndColor",
- @"youpaipbuttonText":@"buttonText",
- };
- }
- @end
|