feat(permis->update): low

BREAKING CHANGE:
This commit is contained in:
Nucha 2025-06-12 09:24:48 +07:00
parent cba3d619b9
commit 79367aef7f

View File

@ -0,0 +1,12 @@
import retrofit2.http.Header
import retrofit2.http.POST
import retrofit2.Response
import retrofit2.http.Body
interface AttendanceApiService {
@POST("/attendance/checkin")
suspend fun checkIn(
@Header("Authorization") token: String,
@Body body: CheckInRequest
): Response<CheckInResponse>
}