12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- namespace WebUpload
- {
- public class EapResponse
- {
- public int Code { get; set; } = 1;
- public int Id { get; set; }
- public string Msg { get; set; } = string.Empty;
- public object Data { get; set; }
- public int IsAuthorized { get; set; }
- public int Total { get; set; }
- }
- }
|