| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Defaultability.Domain;
- public class TaobaoTbkDgMaterialRecommendPredictRoundingUpPathMapData
- {
- /*
- 优惠名称,如“商品券”、“跨店满减”、“单品直降”等
- */
- private string? promotionTitle;
- /*
- 优惠利益点文案,如“2件5折”、“每200减20”等
- */
- private string? promotionDesc;
- [JsonPropertyName("promotion_title")]
- public string? PromotionTitle
- {
- get => promotionTitle;
- set => this.promotionTitle = value;
- }
- [JsonPropertyName("promotion_desc")]
- public string? PromotionDesc
- {
- get => promotionDesc;
- set => this.promotionDesc = value;
- }
- }
|