AlipayAssetPointPointprodBudgetlibQueryModel.cs 456 B

12345678910111213141516
  1. using System.Text.Json.Serialization;
  2. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  3. {
  4. /// <summary>
  5. /// AlipayAssetPointPointprodBudgetlibQueryModel Data Structure.
  6. /// </summary>
  7. public class AlipayAssetPointPointprodBudgetlibQueryModel : AlipayObject
  8. {
  9. /// <summary>
  10. /// 预算库编码
  11. /// </summary>
  12. [JsonPropertyName("budget_code")]
  13. public string BudgetCode { get; set; }
  14. }
  15. }