GithubAccessResponse.kt

package com.gyleedev.data.remote.response

import com.google.gson.annotations.SerializedName

data class GithubAccessResponse(
    @SerializedName("access_token") val accessToken: String,
)