Created
February 11, 2018 18:53
-
-
Save kutliev/76ffd3757db990a68d8da9d41499263d to your computer and use it in GitHub Desktop.
Settings class
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { environment } from '../../environments/environment' | |
export class Settings { | |
ApiEndPoint: string = environment.COSMIC_API + environment.COSMIC_BUCKET + "/"; | |
ApiReadKey: string = environment.COSMIC_READ_KEY; | |
ApiWriteKey: string = environment.COSMIC_WRITE_KEY; | |
} | |
export const SpotTypes = ['Vacant', 'Rent', 'Owned']; | |
export const EventTypes = ['Payment', 'Maintenance', 'Cleaning']; | |
export const Floors = ['Ground', 'First', 'Second', 'Top']; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment