EapResponse.cs 429 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace WebUpload
  6. {
  7. public class EapResponse
  8. {
  9. public int Code { get; set; } = 1;
  10. public int Id { get; set; }
  11. public string Msg { get; set; } = string.Empty;
  12. public object Data { get; set; }
  13. public int IsAuthorized { get; set; }
  14. public int Total { get; set; }
  15. }
  16. }