123456789101112131415161718192021222324252627282930313233 |
- using System;
- using System.ComponentModel.DataAnnotations;
- namespace Vo
- {
- public class OAuthVo
- {
-
-
-
- public string access_token { get; set; }
-
-
-
- public string refresh_token { get; set; }
-
-
-
- public string username { get; set; }
-
-
-
- public DateTime exp { get; set; }
-
-
-
- public long user_id { get; set; }
- }
- }
|