ExportAction.cs 610 B

123456789101112131415161718192021222324
  1. using Newtonsoft.Json;
  2. using SuperAdmin.Models.Object;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Threading.Tasks;
  7. namespace SuperAdmin.Models.Http
  8. {
  9. public class ExportActionReq : Posting
  10. {
  11. public String usersName { get; set; }
  12. public String exportId { get; set; }
  13. public String type { get; set; }
  14. public String note { get; set; }
  15. public ExportActionReq() { }
  16. public static ExportActionReq Parse(String json)
  17. {
  18. return JsonConvert.DeserializeObject<ExportActionReq>(json);
  19. }
  20. }
  21. }