using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// BudgetInfo Data Structure. /// [Serializable] public class BudgetInfo : AopObject { /// /// 预算数量 /// [JsonProperty("budget_total")] public string BudgetTotal { get; set; } /// /// 预算类型 /// [JsonProperty("budget_type")] public string BudgetType { get; set; } } }