using Newtonsoft.Json; using SuperAdmin.Models.Object; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace SuperAdmin.Models.Http { public class ExportActionReq : Posting { public String usersName { get; set; } public String exportId { get; set; } public String type { get; set; } public String note { get; set; } public ExportActionReq() { } public static ExportActionReq Parse(String json) { return JsonConvert.DeserializeObject(json); } } }