Skip to content

Commit

Permalink
Merge pull request #430 from skedgo/bugfix/20787-fix-schedule-checking
Browse files Browse the repository at this point in the history
 [20787] Fix schedule checking
  • Loading branch information
MichaelReyes authored May 8, 2024
2 parents 4ed8be7 + 569d5db commit a49a859
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package com.skedgo.tripkit.routing

import androidx.annotation.StringDef

@Retention(AnnotationRetention.RUNTIME)
@StringDef(
RemoteIcon.NEURON,
RemoteIcon.LIME,
)
annotation class RemoteIcon {
companion object {
const val NEURON = "neuron"
const val LIME = "lime"
}
}

0 comments on commit a49a859

Please sign in to comment.