7 lines
257 B
C#
7 lines
257 B
C#
namespace Neighbourhood.omg.lol.Models {
|
|
public class TokenResponseData {
|
|
public string AccessToken { get; set; } = string.Empty;
|
|
public string TokenType { get; set; } = string.Empty;
|
|
public string Scope { get; set; } = string.Empty;
|
|
}
|
|
}
|