ConsignmentApi.cs 389 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace cuidian.OpenApi.Api
  7. {
  8. /// <summary>
  9. /// 发货Api
  10. /// </summary>
  11. public class ConsignmentApi: BasicApi
  12. {
  13. public const string RESOURCE_ID = "consignment";
  14. public ConsignmentApi()
  15. : base(RESOURCE_ID) { }
  16. }
  17. }