| 12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using ProtoBuf;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace GrpcShared.DTO.Auth
- {
- [ProtoContract]
- public class RefreshTokenResponse : StatusCodeMessage
- {
- [ProtoMember(1)]
- [JsonProperty("access_token")]
- public string? AccessToken { get; set; }
-
- [ProtoMember(2)]
- [JsonProperty("expires_in")]
- public int? Expiration { get; set; }
- }
- }
|