SendResult.cs 236 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Dfs.WayneChina.SpsDataCourier
  5. {
  6. public class SendResult
  7. {
  8. public bool Success { get; set; }
  9. public int Code { get; set; }
  10. }
  11. }