2024-05-31 13:16:09 +00:00
|
|
|
|
namespace Neighbourhood.omg.lol.Models {
|
|
|
|
|
public class TokenResponseData {
|
2024-07-02 00:29:50 +00:00
|
|
|
|
public string AccessToken { get; set; } = string.Empty;
|
|
|
|
|
public string TokenType { get; set; } = string.Empty;
|
|
|
|
|
public string Scope { get; set; } = string.Empty;
|
2024-05-31 13:16:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|