Neighbourhood.omg.lol/Models/API/TokenResponseData.cs

8 lines
257 B
C#
Raw Normal View History

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;
}
}