TaobaoTbkScPublisherInfoSaveData.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability425.Domain;
  5. public class TaobaoTbkScPublisherInfoSaveData
  6. {
  7. /*
  8. 渠道关系ID
  9. */
  10. private long? relationId;
  11. /*
  12. 渠道昵称
  13. */
  14. private string? accountName;
  15. /*
  16. 会员运营ID
  17. */
  18. private long? specialId;
  19. /*
  20. 如果重复绑定会提示:”重复绑定渠道“或”重复绑定粉丝“
  21. */
  22. private string? desc;
  23. [JsonPropertyName("relation_id")]
  24. public long? RelationId
  25. {
  26. get => relationId;
  27. set => this.relationId = value;
  28. }
  29. [JsonPropertyName("account_name")]
  30. public string? AccountName
  31. {
  32. get => accountName;
  33. set => this.accountName = value;
  34. }
  35. [JsonPropertyName("special_id")]
  36. public long? SpecialId
  37. {
  38. get => specialId;
  39. set => this.specialId = value;
  40. }
  41. [JsonPropertyName("desc")]
  42. public string? Desc
  43. {
  44. get => desc;
  45. set => this.desc = value;
  46. }
  47. }