City Type

sealed class CityType

Class that represent different cities types

Author

Felipe Gonzalez

Inheritors

Types

Link copied to clipboard
class CityDestination(val id: String, val name: String) : CityType

Class for destination city during job execution

Link copied to clipboard
class CitySource(val id: String, val name: String) : CityType

Class for source city during job execution

Properties

Link copied to clipboard
val id: String
Link copied to clipboard
val name: String