Skip to content

Instantly share code, notes, and snippets.

@MkhytarMkhoian
Created May 15, 2024 14:52
Show Gist options
  • Save MkhytarMkhoian/2755b70bfd9ae6e08b0f8fa9ed98c723 to your computer and use it in GitHub Desktop.
Save MkhytarMkhoian/2755b70bfd9ae6e08b0f8fa9ed98c723 to your computer and use it in GitHub Desktop.
internal val fakeFareModels: List<FareModel>
get() = listOf(
FareModel(
description = "2.5 Hour Ticket",
price = 2.5f,
),
FareModel(
description = "1 Day Pass",
price = 5.0f,
),
FareModel(
description = "30 Day Pass",
price = 100f,
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment