AppResultJson.cs 285 B

1234567891011
  1. namespace Model.Customer
  2. {
  3. public class AppResultJson
  4. {
  5. public string Info { get; set; }
  6. public object Data { get; set; }
  7. public object Other { get; set; }
  8. public string Status { get; set; }
  9. public int Timestamp { get; set; }
  10. }
  11. }