| 123456789101112131415161718192021222324252627282930 |
- using System.Runtime.Serialization;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace WorkOrderControl
- {
- class TokenDataEntity
- {
- }
-
- class Msg_token
- {
- public int status { get; set; }
- public string msg { get; set; }
- public tdata data { get; set; }
- }
- class tdata
- {
- public string token { get; set; }
- public int expiretime { get; set; }
- }
- }
|