add new API object for authentification

This commit is contained in:
Andrea Clement 2020-03-05 20:34:48 +01:00
parent 14197355c1
commit a989409433
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +0,0 @@
package com.h.pixeldroid.login
class LoginTool {
}

View File

@ -0,0 +1,8 @@
package com.h.pixeldroid.objects
data class Token(
val access_token: String,
val token_type: String,
val scope: String,
val created_at: Int
)