| 12345678910111213141516171819202122 |
- 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 TokenRequest
- {
- [ProtoMember(1)]
- public string grant_type { get; set; } = "authorization_code";
- [ProtoMember(2)]
- public string? code { get; set; }
- [ProtoMember(3)]
- public string? redirect_uri { get; set; }
-
-
- }
- }
|