using System.Text.Json.Serialization; using System.Collections.Generic; using Topsdk.Util; namespace Topsdk.Top.Ability2474.Domain; public class TaobaoTbkDgVegasSendReportResult { /* 是否成功 */ private bool? success; /* model */ private TaobaoTbkDgVegasSendReportRightsSendRptDTO? model; /* msgInfo */ private string? msgInfo; /* msgCode */ private string? msgCode; [JsonPropertyName("success")] public bool? Success { get => success; set => this.success = value; } [JsonPropertyName("model")] public TaobaoTbkDgVegasSendReportRightsSendRptDTO? Model { get => model; set => this.model = value; } [JsonPropertyName("msg_info")] public string? MsgInfo { get => msgInfo; set => this.msgInfo = value; } [JsonPropertyName("msg_code")] public string? MsgCode { get => msgCode; set => this.msgCode = value; } }