Neighbourhood.omg.lol/Models/TokenResponseData.cs

8 lines
209 B
C#
Raw Normal View History

namespace Neighbourhood.omg.lol.Models {
public class TokenResponseData {
public string AccessToken { get; set; }
public string TokenType { get; set; }
public string Scope { get; set; }
}
}