EapResponse.cs 368 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace MAutoUpdate.Models
  5. {
  6. public class EapResponse
  7. {
  8. public int Code { get; set; } = 1;
  9. public int Id { get; set; }
  10. public string Msg { get; set; } = string.Empty;
  11. public object Data { get; set; }
  12. public int IsAuthorized { get; set; }
  13. }
  14. }