| 12345678910111213141516171819202122232425 |
- using System.Text.Json.Serialization;
- using System.Collections.Generic;
- using Topsdk.Util;
- namespace Topsdk.Top.Ability382.Domain;
- public class TaobaoTbkDgVegasSendStatusMapData
- {
- /*
- 若该用户当前无待核销的红包,则返回1,若当前有待核销的红包,则返回0
- */
- private string? isNewUser;
- [JsonPropertyName("is_new_user")]
- public string? IsNewUser
- {
- get => isNewUser;
- set => this.isNewUser = value;
- }
- }
|