8 lines
209 B
C#
8 lines
209 B
C#
|
namespace Neighbourhood.omg.lol.Models {
|
|||
|
public class TokenResponseData {
|
|||
|
public string AccessToken { get; set; }
|
|||
|
public string TokenType { get; set; }
|
|||
|
public string Scope { get; set; }
|
|||
|
}
|
|||
|
}
|