├── .gitignore ├── Documents ├── DemoScript.pdf └── Images │ ├── SampleEndpoints.png │ ├── home-desktop.png │ ├── home.png │ ├── maintenance.png │ ├── menu.png │ ├── myroom.png │ ├── nfc.png │ ├── suggestions-desktop.png │ ├── suggestions.png │ ├── uitests-android.png │ ├── uitests-command-android.png │ ├── uitests-command-ios.png │ └── uitests-ios.png ├── LICENSE ├── README.md └── Source ├── SmartHotel.Clients.Android.sln ├── SmartHotel.Clients.Maintenance.sln ├── SmartHotel.Clients.Maintenance ├── SmartHotel.Clients.Maintenance.Forms │ ├── Converters │ │ ├── FactorConverter.cs │ │ ├── TaskStatusToColorConverter.cs │ │ ├── TaskStatusToImageConverter.cs │ │ ├── TaskStatusToStringConverter.cs │ │ ├── TaskTypeToIconConverter.cs │ │ └── TaskTypeToSubtitleConverter.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SmartHotel.Clients.Maintenance.Forms.csproj │ ├── Validations │ │ └── ValidUrlRule.cs │ ├── ViewModels │ │ ├── Base │ │ │ └── ViewModelBase.cs │ │ └── DetailViewModel.cs │ └── Views │ │ ├── DetailView.xaml │ │ └── DetailView.xaml.cs ├── SmartHotel.Clients.Maintenance.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Helpers │ │ └── Settings.cs │ ├── Info.plist │ ├── LoadingOverlayView.cs │ ├── Main.cs │ ├── Main.storyboard │ ├── NavigationItemHelper.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon_Launcher_114x114.png │ │ ├── Icon_Launcher_120x120.png │ │ ├── Icon_Launcher_180x180.png │ │ ├── LaunchScreen.xib │ │ ├── Media.xcassets │ │ │ ├── AppIcons.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ ├── Icon_Launcher_120x120.png │ │ │ │ └── Icon_Launcher_180x180.png │ │ │ └── LaunchImages.launchimage │ │ │ │ └── Contents.json │ │ ├── hero_image_room.png │ │ ├── ic_air_conditioner.png │ │ ├── ic_clean_room.png │ │ ├── ic_new_guest.png │ │ ├── ic_number.png │ │ ├── ic_room_service.png │ │ ├── ic_towel.png │ │ ├── logo_splash.png │ │ ├── pending-status.png │ │ └── resolved-status.png │ ├── SmartHotel.Clients.Maintenance.iOS.csproj │ ├── Styles.cs │ ├── TaskDetailPageManager.cs │ ├── TaskTableDataSource.cs │ ├── TaskTableDelegate.cs │ ├── TaskTableViewCell.cs │ ├── TaskTableViewCell.designer.cs │ ├── TaskTableViewController.cs │ ├── TaskTableViewController.designer.cs │ └── packages.config └── SmartHotel.Clients.Maintenance │ ├── AppSettings.cs │ ├── Helpers │ └── Settings.cs │ ├── Models │ ├── RemoteSettings.cs │ └── Task.cs │ ├── Services │ ├── Settings │ │ └── SettingsService.cs │ └── Tasks │ │ ├── FakeTasksService.cs │ │ ├── ITasksService.cs │ │ └── TasksService.cs │ └── SmartHotel.Clients.Maintenance.csproj ├── SmartHotel.Clients.NFC.sln ├── SmartHotel.Clients.NFC ├── SmartHotel.Clients.NFC.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ ├── bg_1.png │ │ │ ├── bg_2.png │ │ │ ├── bg_circle.png │ │ │ ├── bg_splash.png │ │ │ ├── i_nfc.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xhdpi │ │ │ ├── bg_1.png │ │ │ ├── bg_2.png │ │ │ ├── bg_circle.png │ │ │ ├── bg_splash.png │ │ │ ├── i_nfc.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xxhdpi │ │ │ ├── bg_1.png │ │ │ ├── bg_2.png │ │ │ ├── bg_circle.png │ │ │ ├── bg_splash.png │ │ │ ├── i_nfc.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable │ │ │ ├── bg_splash.png │ │ │ ├── icon.png │ │ │ ├── james.jpg │ │ │ ├── logo_splash.png │ │ │ └── splash_drawable.xml │ │ ├── layout │ │ │ ├── Tabbar.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ └── styles.xml │ ├── SmartHotel.Clients.NFC.Android.csproj │ ├── SmartHotel.Clients.NFC.Android.csproj.bak │ ├── SmartHotelCardReader.cs │ ├── SplashActivity.cs │ ├── app.config │ └── packages.config └── SmartHotel.Clients.NFC │ ├── App.xaml │ ├── App.xaml.cs │ ├── Controls │ ├── AnimatedDonutChart.cs │ ├── CustomDonutChart.cs │ └── CustomFrame.cs │ ├── Helpers │ └── RadialHelpers.cs │ ├── MessengerKeys.cs │ ├── Models │ └── NfcParameter.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── SmartHotel.Clients.NFC.csproj │ ├── ViewModels │ ├── Base │ │ ├── ExtendedBindableObject.cs │ │ └── ViewModelBase.cs │ └── MainViewModel.cs │ └── Views │ ├── MainView.xaml │ └── MainView.xaml.cs ├── SmartHotel.Clients.UITests.sln ├── SmartHotel.Clients.UITests ├── AppManager.cs ├── BasePage.cs ├── BaseTestFixture.cs ├── Pages │ ├── BookCityPage.cs │ ├── BookDatesPage.cs │ ├── BookHotelsPage.cs │ ├── BookPage.cs │ ├── HomePage.cs │ └── LogInPage.cs ├── PlatformQuery.cs ├── SmartHotel.Clients.UITests.csproj ├── TestSettings.cs └── Tests.cs ├── SmartHotel.Clients.Windows.sln ├── SmartHotel.Clients.iOS.sln ├── SmartHotel.Clients.sln └── SmartHotel.Clients ├── CommonResources └── Fonts │ ├── firasans │ ├── FiraSans-Bold.ttf │ ├── FiraSans-Regular.ttf │ ├── FiraSans-SemiBold.ttf │ └── OFL.txt │ └── poppins │ ├── OFL.txt │ ├── Poppins-Bold.ttf │ ├── Poppins-Light.ttf │ ├── Poppins-Medium.ttf │ ├── Poppins-Regular.ttf │ └── Poppins-SemiBold.ttf ├── SmartHotel.Clients.Android ├── Assets │ └── AboutAssets.txt ├── Effects │ └── UnderlineTextEffect.cs ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Renderers │ ├── CalendarButtonRenderer.cs │ ├── CustomMapRenderer.cs │ ├── CustomNavigationPageRenderer.cs │ ├── CustomSliderRenderer.cs │ └── ExtendedEntryRenderer.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable-hdpi │ │ ├── ambient_light.png │ │ ├── ball.png │ │ ├── ball_2.png │ │ ├── ball_left.png │ │ ├── ball_right.png │ │ ├── be_green.png │ │ ├── bg_splash.png │ │ ├── hero_image.png │ │ ├── hero_image_room.png │ │ ├── i_door_nfc.png │ │ ├── ic_air_conditioning.png │ │ ├── ic_airport_shutle.png │ │ ├── ic_arrow_left_normal.png │ │ ├── ic_arrow_right_normal.png │ │ ├── ic_bath.png │ │ ├── ic_be_green.png │ │ ├── ic_be_green_2.png │ │ ├── ic_beach.png │ │ ├── ic_bed.png │ │ ├── ic_bot.png │ │ ├── ic_card.png │ │ ├── ic_check_out.png │ │ ├── ic_dryer.png │ │ ├── ic_elevator.png │ │ ├── ic_filter.png │ │ ├── ic_fitness_centre.png │ │ ├── ic_green.png │ │ ├── ic_gym.png │ │ ├── ic_home.png │ │ ├── ic_hot_tub.png │ │ ├── ic_ice.png │ │ ├── ic_indoor_fireplace.png │ │ ├── ic_key.png │ │ ├── ic_leak.png │ │ ├── ic_logout.png │ │ ├── ic_map.png │ │ ├── ic_other.png │ │ ├── ic_other_2.png │ │ ├── ic_paperbin.png │ │ ├── ic_paperbin_red.png │ │ ├── ic_parking.png │ │ ├── ic_pool.png │ │ ├── ic_room.png │ │ ├── ic_room_2.png │ │ ├── ic_sort.png │ │ ├── ic_star_active.png │ │ ├── ic_star_normal.png │ │ ├── ic_table.png │ │ ├── ic_wheelchair_accessible.png │ │ ├── ic_wifi.png │ │ ├── icon.png │ │ ├── illustratrion_bot.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_header_background_1.png │ │ ├── img_header_background_2.png │ │ ├── logo_splash.png │ │ ├── map.png │ │ ├── placeholder_2.png │ │ ├── pushpin_01.png │ │ ├── pushpin_02.png │ │ ├── room_temperature.png │ │ ├── selected.png │ │ ├── simbol_logo.png │ │ ├── switch_off.png │ │ └── switch_on.png │ ├── drawable-xhdpi │ │ ├── ambient_light.png │ │ ├── ball.png │ │ ├── ball_2.png │ │ ├── ball_left.png │ │ ├── ball_right.png │ │ ├── be_green.png │ │ ├── bg_splash.png │ │ ├── hero_image.png │ │ ├── hero_image_room.png │ │ ├── i_door_nfc.png │ │ ├── ic_air_conditioning.png │ │ ├── ic_arrow_left_normal.png │ │ ├── ic_arrow_right_normal.png │ │ ├── ic_bath.png │ │ ├── ic_be_green.png │ │ ├── ic_be_green_2.png │ │ ├── ic_beach.png │ │ ├── ic_bed.png │ │ ├── ic_bot.png │ │ ├── ic_card.png │ │ ├── ic_check_out.png │ │ ├── ic_elevator.png │ │ ├── ic_filter.png │ │ ├── ic_green.png │ │ ├── ic_gym.png │ │ ├── ic_home.png │ │ ├── ic_hotel.png │ │ ├── ic_hotel_2.png │ │ ├── ic_ice.png │ │ ├── ic_ice_off.png │ │ ├── ic_ice_on.png │ │ ├── ic_key.png │ │ ├── ic_leak.png │ │ ├── ic_leak_off.png │ │ ├── ic_leak_on.png │ │ ├── ic_logout.png │ │ ├── ic_map.png │ │ ├── ic_other.png │ │ ├── ic_other_2.png │ │ ├── ic_paperbin.png │ │ ├── ic_paperbin_red.png │ │ ├── ic_pool.png │ │ ├── ic_room.png │ │ ├── ic_room_2.png │ │ ├── ic_sort.png │ │ ├── ic_star_active.png │ │ ├── ic_star_normal.png │ │ ├── ic_table.png │ │ ├── ic_toothbrush_off.png │ │ ├── ic_toothbrush_on.png │ │ ├── ic_towels_off.png │ │ ├── ic_towels_on.png │ │ ├── ic_wifi.png │ │ ├── icon.png │ │ ├── illustratrion_bot.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_header_background_1.png │ │ ├── img_header_background_2.png │ │ ├── logo_splash.png │ │ ├── map.png │ │ ├── placeholder_2.png │ │ ├── pushpin_01.png │ │ ├── pushpin_02.png │ │ ├── room_temperature.png │ │ ├── selected.png │ │ ├── simbol_logo.png │ │ ├── switch_off.png │ │ └── switch_on.png │ ├── drawable-xxhdpi │ │ ├── ambient_light.png │ │ ├── ball.png │ │ ├── ball_2.png │ │ ├── ball_left.png │ │ ├── ball_right.png │ │ ├── be_green.png │ │ ├── bg_splash.png │ │ ├── hero_image.png │ │ ├── hero_image_room.png │ │ ├── i_door_nfc.png │ │ ├── ic_air_conditioning.png │ │ ├── ic_arrow_left_normal.png │ │ ├── ic_arrow_right_normal.png │ │ ├── ic_bath.png │ │ ├── ic_be_green.png │ │ ├── ic_be_green_2.png │ │ ├── ic_beach.png │ │ ├── ic_bed.png │ │ ├── ic_bot.png │ │ ├── ic_card.png │ │ ├── ic_check_out.png │ │ ├── ic_elevator.png │ │ ├── ic_filter.png │ │ ├── ic_green.png │ │ ├── ic_gym.png │ │ ├── ic_home.png │ │ ├── ic_hotel.png │ │ ├── ic_hotel_2.png │ │ ├── ic_ice.png │ │ ├── ic_ice_off.png │ │ ├── ic_ice_on.png │ │ ├── ic_key.png │ │ ├── ic_leak.png │ │ ├── ic_leak_off.png │ │ ├── ic_leak_on.png │ │ ├── ic_logout.png │ │ ├── ic_map.png │ │ ├── ic_other.png │ │ ├── ic_other_2.png │ │ ├── ic_paperbin.png │ │ ├── ic_paperbin_red.png │ │ ├── ic_pool.png │ │ ├── ic_room.png │ │ ├── ic_room_2.png │ │ ├── ic_sort.png │ │ ├── ic_star_active.png │ │ ├── ic_star_normal.png │ │ ├── ic_table.png │ │ ├── ic_toothbrush_off.png │ │ ├── ic_toothbrush_on.png │ │ ├── ic_towels_off.png │ │ ├── ic_towels_on.png │ │ ├── ic_wifi.png │ │ ├── icon.png │ │ ├── illustratrion_bot.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_header_background_1.png │ │ ├── img_header_background_2.png │ │ ├── logo_splash.png │ │ ├── map.png │ │ ├── placeholder_2.png │ │ ├── pushpin_01.png │ │ ├── pushpin_02.png │ │ ├── room_temperature.png │ │ ├── selected.png │ │ ├── simbol_logo.png │ │ ├── switch_off.png │ │ └── switch_on.png │ ├── drawable-xxxhdpi │ │ ├── ambient_light.png │ │ ├── ball.png │ │ ├── ball_2.png │ │ ├── ball_left.png │ │ ├── ball_right.png │ │ ├── be_green.png │ │ ├── bg_splash.png │ │ ├── hero_image.png │ │ ├── hero_image_room.png │ │ ├── i_door_nfc.png │ │ ├── ic_air_conditioning.png │ │ ├── ic_airport_shutle.png │ │ ├── ic_arrow_left_normal.png │ │ ├── ic_arrow_right_normal.png │ │ ├── ic_bath.png │ │ ├── ic_be_green.png │ │ ├── ic_be_green_2.png │ │ ├── ic_breakfast.png │ │ ├── ic_card.png │ │ ├── ic_check_out.png │ │ ├── ic_dryer.png │ │ ├── ic_elevator.png │ │ ├── ic_filter.png │ │ ├── ic_fitness_centre.png │ │ ├── ic_green.png │ │ ├── ic_gym.png │ │ ├── ic_home.png │ │ ├── ic_hot_tub.png │ │ ├── ic_hotel.png │ │ ├── ic_hotel_2.png │ │ ├── ic_ice_off.png │ │ ├── ic_ice_on.png │ │ ├── ic_indoor_fireplace.png │ │ ├── ic_leak_off.png │ │ ├── ic_leak_on.png │ │ ├── ic_map.png │ │ ├── ic_others.png │ │ ├── ic_others_2.png │ │ ├── ic_paperbin.png │ │ ├── ic_paperbin_red.png │ │ ├── ic_parking.png │ │ ├── ic_pool.png │ │ ├── ic_room.png │ │ ├── ic_room_2.png │ │ ├── ic_sort.png │ │ ├── ic_star_active.png │ │ ├── ic_star_normal.png │ │ ├── ic_table.png │ │ ├── ic_toothbrush_off.png │ │ ├── ic_toothbrush_on.png │ │ ├── ic_towels_off.png │ │ ├── ic_towels_on.png │ │ ├── ic_tv.png │ │ ├── ic_wheelchair_accessible.png │ │ ├── ic_wifi.png │ │ ├── icon.png │ │ ├── illustratrion_bot.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_header_background_1.png │ │ ├── img_header_background_2.png │ │ ├── logo_splash.png │ │ ├── map.png │ │ ├── placeholder_2.png │ │ ├── pushpin_01.png │ │ ├── pushpin_02.png │ │ ├── room_temperature.png │ │ ├── selected.png │ │ ├── simbol_logo.png │ │ ├── switch_off.png │ │ └── switch_on.png │ ├── drawable │ │ ├── avatar.png │ │ ├── bg_slider_01.png │ │ ├── bg_slider_02.png │ │ ├── bg_slider_03.png │ │ ├── bg_slider_04.png │ │ ├── bg_splash.png │ │ ├── hero_image.png │ │ ├── hero_image_room.png │ │ ├── i_hotel_1.jpg │ │ ├── i_hotel_2.jpg │ │ ├── i_hotel_3.jpg │ │ ├── i_hotel_4.jpg │ │ ├── i_hotel_5.jpg │ │ ├── i_hotel_6.jpg │ │ ├── i_hotel_7.jpg │ │ ├── i_hotel_8.jpg │ │ ├── ic_be_green_2.png │ │ ├── ic_card.png │ │ ├── ic_paperbin.png │ │ ├── ic_paperbin_red.png │ │ ├── icon.png │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_header_background_1.png │ │ ├── img_header_background_2.png │ │ ├── logo_splash.png │ │ ├── notification_icon.png │ │ ├── placeholder_2.png │ │ ├── rating.png │ │ ├── splash_drawable.xml │ │ └── thumb_slider.png │ ├── layout │ │ ├── Tabbar.axml │ │ └── Toolbar.axml │ ├── values │ │ └── styles.xml │ └── xml │ │ └── apduservice.xml ├── Services │ ├── Authentication │ │ └── BrowserCookiesService.cs │ ├── CardEmulation │ │ └── CardService.cs │ ├── DismissKeyboard │ │ └── DismissKeyboardService.cs │ └── NFC │ │ └── NfcService.cs ├── SmartHotel.Clients.Android.csproj ├── SplashActivity.cs └── appcenter-post-build.sh ├── SmartHotel.Clients.UWP ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-100.png │ ├── LockScreenLogo.scale-125.png │ ├── LockScreenLogo.scale-150.png │ ├── LockScreenLogo.scale-200.png │ ├── LockScreenLogo.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ ├── Wide310x150Logo.scale-400.png │ ├── ambient_light.png │ ├── avatar.png │ ├── ball.png │ ├── ball_2.png │ ├── ball_left.png │ ├── ball_right.png │ ├── be_green.png │ ├── bg_slider_01.png │ ├── bg_slider_02.png │ ├── bg_slider_03.png │ ├── bg_slider_04.png │ ├── hero_image.png │ ├── hero_image_room.png │ ├── i_door_nfc.png │ ├── i_hotel_1.jpg │ ├── i_hotel_2.jpg │ ├── i_hotel_3.jpg │ ├── i_hotel_4.jpg │ ├── i_hotel_5.jpg │ ├── i_hotel_6.jpg │ ├── i_hotel_7.jpg │ ├── i_hotel_8.jpg │ ├── ic_air_conditioning.png │ ├── ic_airport_shutle.png │ ├── ic_arrow_left_normal.png │ ├── ic_arrow_right_normal.png │ ├── ic_bath.png │ ├── ic_be_green.png │ ├── ic_be_green_2.png │ ├── ic_beach.png │ ├── ic_bed.png │ ├── ic_bot.png │ ├── ic_bot_2.png │ ├── ic_breakfast.png │ ├── ic_card.png │ ├── ic_check_out.png │ ├── ic_dryer.png │ ├── ic_elevator.png │ ├── ic_filter.png │ ├── ic_fitness_centre.png │ ├── ic_green.png │ ├── ic_gym.png │ ├── ic_home.png │ ├── ic_hot_tub.png │ ├── ic_hotel.png │ ├── ic_hotel_2.png │ ├── ic_ice.png │ ├── ic_ice_off.png │ ├── ic_ice_on.png │ ├── ic_indoor_fireplace.png │ ├── ic_key.png │ ├── ic_leak_off.png │ ├── ic_leak_on.png │ ├── ic_logout.png │ ├── ic_map.png │ ├── ic_others.png │ ├── ic_others_2.png │ ├── ic_paperbin.png │ ├── ic_paperbin_red.png │ ├── ic_parking.png │ ├── ic_pool.png │ ├── ic_room.png │ ├── ic_room_2.png │ ├── ic_sort.png │ ├── ic_star_active.png │ ├── ic_star_normal.png │ ├── ic_table.png │ ├── ic_toothbrush_off.png │ ├── ic_toothbrush_on.png │ ├── ic_towels_off.png │ ├── ic_towels_on.png │ ├── ic_tv.png │ ├── ic_wheelchair_accessible.png │ ├── ic_wifi.png │ ├── illustratrion_bot.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_4.png │ ├── img_5.png │ ├── img_6.png │ ├── img_header_background_1.png │ ├── img_header_background_2.png │ ├── logo_splash.png │ ├── map.png │ ├── map_desktop.png │ ├── notification_icon.png │ ├── placeholder_2.png │ ├── pushpin_01.png │ ├── pushpin_02.png │ ├── rating.png │ ├── room_temperature.png │ ├── selected.png │ ├── simbol_logo.png │ ├── switch_off.png │ ├── switch_on.png │ └── thumb_slider.png ├── Extensions │ ├── ColorExtensions.cs │ └── DependencyObjectExtensions.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Renderers │ ├── ButtonFrameRenderer.cs │ ├── CalendarButtonRenderer.cs │ ├── CustomMapRenderer.cs │ ├── CustomSliderRenderer.cs │ └── ExtendedEntryRenderer.cs ├── Services │ └── DismissKeyboard │ │ └── DismissKeyboardService.cs └── SmartHotel.Clients.UWP.csproj ├── SmartHotel.Clients.iOS ├── AppDelegate.cs ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@1x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-76x76@3x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ ├── Icon-Small-50x50@2x.png │ │ └── ItunesArtwork@2x.png │ └── LaunchImages.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-1242@3x~iphone6s-landscape_2208x1242.png │ │ ├── LaunchImage-1242@3x~iphone6s-portrait_1242x2208.png │ │ ├── LaunchImage-568h@2x~iphone_640x1136.png │ │ ├── LaunchImage-750@2x~iphone6-landscape_1334x750.png │ │ ├── LaunchImage-750@2x~iphone6-portrait_750x1334.png │ │ ├── LaunchImage-Landscape@2x~ipad_2048x1496.png │ │ ├── LaunchImage-Landscape@2x~ipad_2048x1536.png │ │ ├── LaunchImage-Landscape~ipad_1024x748.png │ │ ├── LaunchImage-Landscape~ipad_1024x768.png │ │ ├── LaunchImage-Portrait@2x~ipad_1536x2008.png │ │ ├── LaunchImage-Portrait@2x~ipad_1536x2048.png │ │ ├── LaunchImage-Portrait~ipad_768x1024.png │ │ ├── LaunchImage.png │ │ ├── LaunchImage~ipad.png │ │ ├── LaunchImage~iphone-320x480.png │ │ └── LaunchImage~iphone_640x960.png ├── Effects │ └── UnderlineTextEffect.cs ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Renderers │ ├── CalendarButtonRenderer.cs │ ├── CustomMapRenderer.cs │ ├── CustomNavigationRenderer.cs │ ├── CustomPageRenderer.cs │ ├── ExtendedEntryRenderer.cs │ └── TransparentViewCell.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-667h@2x.png │ ├── Default-736h@3x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LaunchScreen.storyboard │ ├── Media.xcassets │ │ ├── AppIcons.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-1024.png │ │ │ ├── Icon-120.png │ │ │ ├── Icon-152.png │ │ │ ├── Icon-167.png │ │ │ ├── Icon-180.png │ │ │ ├── Icon-20.png │ │ │ ├── Icon-29.png │ │ │ ├── Icon-40.png │ │ │ ├── Icon-58.png │ │ │ ├── Icon-60.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-80.png │ │ │ ├── Icon-87.png │ │ │ └── Icon-Small-40.png │ │ └── LaunchImages.launchimage │ │ │ ├── Contents.json │ │ │ ├── LaunchImage-568h@2x~iphone_640x1136.png │ │ │ ├── LaunchImage-Landscape@2x~ipad_2048x1536.png │ │ │ ├── LaunchImage-Landscape~ipad_1024x768.png │ │ │ ├── LaunchImage-Portrait@2x~ipad_1536x2048.png │ │ │ ├── LaunchImage-Portrait~ipad_768x1024.png │ │ │ └── LaunchImage~iphone_640x960.png │ ├── ambient_light.png │ ├── avatar.png │ ├── ball.png │ ├── ball_2.png │ ├── ball_left.png │ ├── ball_right.png │ ├── be_green.png │ ├── bg_slider_01.png │ ├── bg_slider_02.png │ ├── bg_slider_03.png │ ├── bg_slider_04.png │ ├── hero_image.png │ ├── hero_image_room.png │ ├── hero_image_room@2x.png │ ├── hero_image_room@3x.png │ ├── i_door_nfc.png │ ├── i_hotel_1.jpg │ ├── i_hotel_2.jpg │ ├── i_hotel_3.jpg │ ├── i_hotel_4.jpg │ ├── i_hotel_5.jpg │ ├── i_hotel_6.jpg │ ├── i_hotel_7.jpg │ ├── i_hotel_8.jpg │ ├── ic_air_conditioning.png │ ├── ic_airport_shutle.png │ ├── ic_bath.png │ ├── ic_be_green.png │ ├── ic_be_green_2.png │ ├── ic_beach.png │ ├── ic_bed.png │ ├── ic_bot.png │ ├── ic_bot_2.png │ ├── ic_breakfast.png │ ├── ic_card.png │ ├── ic_card@2x.png │ ├── ic_card@3x.png │ ├── ic_check_out.png │ ├── ic_dryer.png │ ├── ic_elevator.png │ ├── ic_filter.png │ ├── ic_fitness_centre.png │ ├── ic_green.png │ ├── ic_gym.png │ ├── ic_home.png │ ├── ic_hot_tub.png │ ├── ic_hotel.png │ ├── ic_hotel_2.png │ ├── ic_ice.png │ ├── ic_ice_off.png │ ├── ic_ice_on.png │ ├── ic_indoor_fireplace.png │ ├── ic_key.png │ ├── ic_leak.png │ ├── ic_leak_off.png │ ├── ic_leak_on.png │ ├── ic_logout.png │ ├── ic_map.png │ ├── ic_menu.png │ ├── ic_others.png │ ├── ic_others_2.png │ ├── ic_paperbin.png │ ├── ic_paperbin_red.png │ ├── ic_parking.png │ ├── ic_pool.png │ ├── ic_room.png │ ├── ic_room_2.png │ ├── ic_sort.png │ ├── ic_star_active.png │ ├── ic_star_normal.png │ ├── ic_table.png │ ├── ic_toothbrush.png │ ├── ic_toothbrush_off.png │ ├── ic_toothbrush_on.png │ ├── ic_towel.png │ ├── ic_towels_off.png │ ├── ic_towels_on.png │ ├── ic_tv.png │ ├── ic_wheelchair_accessible.png │ ├── ic_wifi.png │ ├── illustratrion_bot.png │ ├── img_1.png │ ├── img_2.png │ ├── img_3.png │ ├── img_header_background_1.png │ ├── img_header_background_2.png │ ├── logo_splash.png │ ├── map.png │ ├── notification_icon.png │ ├── placeholder_2.png │ ├── pushpin_01.png │ ├── pushpin_02.png │ ├── rating.png │ ├── room_temperature.png │ ├── selected.png │ ├── simbol_logo.png │ ├── switch_off.png │ ├── switch_on.png │ ├── thumb_slider.png │ └── upload.png ├── Services │ ├── BrowserCookiesService.cs │ └── DismissKeyboard │ │ └── DismissKeyboardService.cs ├── SmartHotel.Clients.iOS.csproj ├── appcenter-post-build.sh ├── iTunesArtwork ├── iTunesArtwork@2x └── packages.config └── SmartHotel.Clients ├── App.xaml ├── App.xaml.cs ├── AppSettings.cs ├── Behaviors └── ItemTappedCommandListView.cs ├── Controls ├── ButtonFrame.cs ├── Calendar │ ├── CalandarChanges.cs │ ├── Calendar.Disabled.cs │ ├── Calendar.MonthNavigation.cs │ ├── Calendar.MonthYearView.cs │ ├── Calendar.NumberOfWeek.cs │ ├── Calendar.OutsideMonth.cs │ ├── Calendar.Selected.cs │ ├── Calendar.SpecialDates.cs │ ├── Calendar.Weekdays.cs │ ├── Calendar.cs │ ├── CalendarButton.cs │ ├── DateTimeEventArgs.cs │ ├── DateTypeEnum.cs │ ├── EnumerableExtensions.cs │ └── SpecialDate.cs ├── CustomMap.cs ├── CustomSlider.cs ├── ExtendedEntry.cs ├── GreenChart.cs ├── HorizontalList.cs ├── LightChart.cs ├── ParallaxControl.cs ├── RatingControl.cs ├── RemoteSettingsControl.xaml ├── RemoteSettingsControl.xaml.cs ├── TemperatureChart.cs ├── ToggleButton.cs ├── iOSStatusBarBackground.xaml └── iOSStatusBarBackground.xaml.cs ├── Converters ├── AmbientLightValueConverter.cs ├── CheckInTimeConverter.cs ├── CountToHeightConverter.cs ├── EnabledToHeightConverter.cs ├── HotelImageConverter.cs ├── InverseBoolConverter.cs ├── MenuItemTypeConverter.cs ├── NotificationTypeToIconConverter.cs ├── NotificationTypeToTitleConverter.cs ├── SelectedToBoolConverter.cs ├── ServiceNameToIconConverter.cs ├── SuggestionTypeToColorConverter.cs └── TemperatureValueConverter.cs ├── Effects └── UnderlineTextEffect.cs ├── Exceptions └── ConnectivityException.cs ├── Extensions ├── LocationExtenions.cs ├── ObservableExtension.cs └── UriBuilderExtensions.cs ├── Helpers ├── MapHelper.cs ├── StatusBarHelper.cs └── Timer.cs ├── MarkupExtensions └── TranslateExtension.cs ├── MessengerKeys.cs ├── Models ├── Booking.cs ├── BookingSummary.cs ├── City.cs ├── CustomPin.cs ├── DeviceDesiredData.cs ├── DeviceSensorData.cs ├── Hotel.cs ├── ILocationResponse.cs ├── MenuItem.cs ├── MenuItemType.cs ├── NfcParameter.cs ├── Notification.cs ├── NotificationType.cs ├── Occupancy.cs ├── RemoteSettings.cs ├── Review.cs ├── Room.cs ├── Service.cs ├── Suggestion.cs └── User.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources └── GreetingMessage.txt ├── Services ├── Analytic │ ├── AnalyticService.cs │ ├── DummyAnalyticService.cs │ └── IAnalyticService.cs ├── Authentication │ ├── AuthenticationResultHelper.cs │ ├── AuthenticationService.cs │ ├── DefaultBrowserCookiesService.cs │ ├── FakeAuthenticationService.cs │ ├── GravatarUrlProvider.cs │ ├── IAuthenticationService.cs │ ├── IAvatarUrlProvider.cs │ ├── IBrowserCookiesService.cs │ └── ServiceAuthenticationException.cs ├── Booking │ ├── BookingService.cs │ ├── FakeBookingService.cs │ └── IBookingService.cs ├── Chart │ ├── FakeChartService.cs │ └── IChartService.cs ├── Dialog │ ├── DialogService.cs │ └── IDialogService.cs ├── DismissKeyboard │ └── IDismissKeyboardService.cs ├── File │ ├── FileService.cs │ └── IFileService.cs ├── Geolocator │ ├── FakeLocationService.cs │ ├── ILocationService.cs │ └── LocationService.cs ├── Hotel │ ├── FakeHotelService.cs │ ├── HotelService.cs │ └── IHotelService.cs ├── IoT │ ├── FakeRoomAmbientLight.cs │ ├── FakeRoomTemperature.cs │ ├── IRoomDevicesDataService.cs │ ├── RoomAmbientLight.cs │ ├── RoomDevicesDataService.cs │ ├── RoomSensorBase.cs │ ├── RoomTemperature.cs │ ├── SensorDataType.cs │ ├── SensorType.cs │ ├── TemperatureExtesions.cs │ └── TemperatureValue.cs ├── NFC │ └── INfcService.cs ├── Navigation │ ├── INavigationService.cs │ ├── NavigationPopupService.cs │ └── NavigationService.cs ├── Notification │ ├── FakeNotificationService.cs │ ├── INotificationService.cs │ └── NotificationService.cs ├── OpenUri │ ├── IOpenUriService.cs │ └── OpenUriService.cs ├── Request │ ├── IRequestService.cs │ └── RequestService.cs ├── Settings │ ├── BaseSettingsLoader.cs │ ├── ISettingsService.cs │ └── SettingsService.cs └── Suggestion │ ├── FakeSuggestionService.cs │ ├── ISuggestionService.cs │ └── SuggestionService.cs ├── SmartHotel.Clients.csproj ├── Utils ├── AsyncCommand.cs ├── NavigationBarAttachedProperty.cs └── PreferencesHelpers.cs ├── Validations ├── ActionValidationRule.cs ├── EmailRule.cs ├── IValidationRule.cs ├── IValidity.cs ├── IsNotNullOrEmptyRule.cs ├── ValidUrlRule.cs └── ValidatableObject.cs ├── ViewModels ├── Base │ ├── IHandleView.cs │ ├── Locator.cs │ └── ViewModelBase.cs ├── BookingCalendarViewModel.cs ├── BookingHotelViewModel.cs ├── BookingHotelsViewModel.cs ├── BookingViewModel.cs ├── CheckoutViewModel.cs ├── ExtendedSplashViewModel.cs ├── HomeViewModel.cs ├── LoginViewModel.cs ├── MainViewModel.cs ├── MenuViewModel.cs ├── MyRoomViewModel.cs ├── NotificationsViewModel.cs ├── OpenDoorViewModel.cs ├── SettingsViewModel.cs └── SuggestionsViewModel.cs └── Views ├── BookingCalendarView.xaml ├── BookingCalendarView.xaml.cs ├── BookingHotelView.xaml ├── BookingHotelView.xaml.cs ├── BookingHotelsView.xaml ├── BookingHotelsView.xaml.cs ├── BookingView.xaml ├── BookingView.xaml.cs ├── CheckoutView.xaml ├── CheckoutView.xaml.cs ├── CustomNavigationPage.xaml ├── CustomNavigationPage.xaml.cs ├── ExtendedSplashView.xaml ├── ExtendedSplashView.xaml.cs ├── HomeView.xaml ├── HomeView.xaml.cs ├── LoginView.xaml ├── LoginView.xaml.cs ├── MainView.xaml ├── MainView.xaml.cs ├── MenuView.xaml ├── MenuView.xaml.cs ├── MyRoomView.xaml ├── MyRoomView.xaml.cs ├── NotificationsView.xaml ├── NotificationsView.xaml.cs ├── OpenDoorView.xaml ├── OpenDoorView.xaml.cs ├── SettingsView.xaml ├── SettingsView.xaml.cs ├── Styles └── LoginView.css ├── SuggestionsView.xaml ├── SuggestionsView.xaml.cs ├── Templates ├── HotelItemTemplate.xaml ├── HotelItemTemplate.xaml.cs ├── MenuItemTemplate.xaml ├── MenuItemTemplate.xaml.cs ├── NotificationDetailItemTemplate.xaml ├── NotificationDetailItemTemplate.xaml.cs ├── NotificationItemTemplate.xaml ├── NotificationItemTemplate.xaml.cs ├── ReviewItemTemplate.xaml ├── ReviewItemTemplate.xaml.cs ├── ServiceItemTemplate.xaml ├── ServiceItemTemplate.xaml.cs ├── SuggestionItemTemplate.xaml ├── SuggestionItemTemplate.xaml.cs ├── UwpNotificationItemTemplate.xaml ├── UwpNotificationItemTemplate.xaml.cs ├── UwpSuggestionItemTemplate.xaml └── UwpSuggestionItemTemplate.xaml.cs ├── UwpHomeView.xaml ├── UwpHomeView.xaml.cs ├── UwpSuggestionsView.xaml └── UwpSuggestionsView.xaml.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /Documents/DemoScript.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/DemoScript.pdf -------------------------------------------------------------------------------- /Documents/Images/SampleEndpoints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/SampleEndpoints.png -------------------------------------------------------------------------------- /Documents/Images/home-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/home-desktop.png -------------------------------------------------------------------------------- /Documents/Images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/home.png -------------------------------------------------------------------------------- /Documents/Images/maintenance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/maintenance.png -------------------------------------------------------------------------------- /Documents/Images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/menu.png -------------------------------------------------------------------------------- /Documents/Images/myroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/myroom.png -------------------------------------------------------------------------------- /Documents/Images/nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/nfc.png -------------------------------------------------------------------------------- /Documents/Images/suggestions-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/suggestions-desktop.png -------------------------------------------------------------------------------- /Documents/Images/suggestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/suggestions.png -------------------------------------------------------------------------------- /Documents/Images/uitests-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/uitests-android.png -------------------------------------------------------------------------------- /Documents/Images/uitests-command-android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/uitests-command-android.png -------------------------------------------------------------------------------- /Documents/Images/uitests-command-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/uitests-command-ios.png -------------------------------------------------------------------------------- /Documents/Images/uitests-ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Documents/Images/uitests-ios.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/README.md -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Android.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Android.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.Forms/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.Forms/Resources.resx -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Info.plist -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Main.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Main.storyboard -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Styles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/Styles.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance.iOS/packages.config -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/AppSettings.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/Helpers/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/Helpers/Settings.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/Models/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Maintenance/SmartHotel.Clients.Maintenance/Models/Task.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/MainActivity.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/drawable/james.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/drawable/james.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/SmartHotelCardReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/SmartHotelCardReader.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/SplashActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/SplashActivity.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/app.config -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.Android/packages.config -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/App.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/App.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/AnimatedDonutChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/AnimatedDonutChart.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/CustomDonutChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/CustomDonutChart.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/CustomFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Controls/CustomFrame.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Helpers/RadialHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Helpers/RadialHelpers.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/MessengerKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/MessengerKeys.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Models/NfcParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Models/NfcParameter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Resources.resx -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/ViewModels/Base/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/ViewModels/Base/ViewModelBase.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Views/MainView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.NFC/SmartHotel.Clients.NFC/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/AppManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/AppManager.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/BasePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/BasePage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/BaseTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/BaseTestFixture.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/BookCityPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/BookCityPage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/BookDatesPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/BookDatesPage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/BookHotelsPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/BookHotelsPage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/BookPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/BookPage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/HomePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/HomePage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Pages/LogInPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Pages/LogInPage.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/PlatformQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/PlatformQuery.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/SmartHotel.Clients.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/SmartHotel.Clients.UITests.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/TestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/TestSettings.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.UITests/Tests.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.Windows.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.Windows.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.iOS.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients.sln -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-Bold.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-Regular.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/firasans/FiraSans-SemiBold.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/firasans/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/firasans/OFL.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/OFL.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/CommonResources/Fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Effects/UnderlineTextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Effects/UnderlineTextEffect.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/MainActivity.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CalendarButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CalendarButtonRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CustomSliderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/CustomSliderRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/ExtendedEntryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Renderers/ExtendedEntryRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_left.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ball_right.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/be_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/be_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/bg_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/bg_splash.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/hero_image.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/i_door_nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/i_door_nfc.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bath.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_beach.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bed.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_card.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_dryer.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_filter.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_gym.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_home.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_hot_tub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_hot_tub.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_ice.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_key.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_leak.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_logout.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_other.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_other_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_other_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_parking.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_pool.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_room.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_room_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_room_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_sort.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/ic_wifi.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-hdpi/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ball_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_bed.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_gym.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_ice.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_key.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/ic_map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xhdpi/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxhdpi/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable-xxxhdpi/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/avatar.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_01.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_02.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_03.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_slider_04.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/bg_splash.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/hero_image.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_1.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_2.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_3.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_4.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_5.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_6.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_7.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/i_hotel_8.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/ic_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/ic_card.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/ic_paperbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/ic_paperbin.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/logo_splash.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/rating.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/thumb_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/drawable/thumb_slider.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/layout/Tabbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/layout/Tabbar.axml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/layout/Toolbar.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/layout/Toolbar.axml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/xml/apduservice.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Resources/xml/apduservice.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/Services/NFC/NfcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/Services/NFC/NfcService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/SmartHotel.Clients.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/SmartHotel.Clients.Android.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/SplashActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/SplashActivity.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.Android/appcenter-post-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.Android/appcenter-post-build.sh -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/App.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/App.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-100.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-125.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-150.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/LockScreenLogo.scale-400.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ambient_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ambient_light.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/avatar.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_left.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ball_right.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/be_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/be_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_01.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_02.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_03.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/bg_slider_04.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/hero_image.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/hero_image_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/hero_image_room.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_door_nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_door_nfc.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_1.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_2.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_3.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_4.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_5.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_6.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_7.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/i_hotel_8.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_air_conditioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_air_conditioning.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_airport_shutle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_airport_shutle.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_arrow_left_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_arrow_left_normal.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_arrow_right_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_arrow_right_normal.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bath.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_be_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_be_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_be_green_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_be_green_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_beach.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bed.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_bot_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_breakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_breakfast.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_card.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_check_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_check_out.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_dryer.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_elevator.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_filter.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_fitness_centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_fitness_centre.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_gym.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_home.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hot_tub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hot_tub.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hotel.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hotel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_hotel_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_ice_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_indoor_fireplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_indoor_fireplace.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_key.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_leak_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_leak_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_leak_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_leak_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_logout.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_others.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_others_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_others_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_paperbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_paperbin.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_paperbin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_paperbin_red.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_parking.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_pool.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_room.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_room_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_room_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_sort.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_star_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_star_active.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_star_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_star_normal.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_table.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_toothbrush_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_toothbrush_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_toothbrush_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_toothbrush_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_towels_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_towels_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_towels_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_towels_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_tv.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_wheelchair_accessible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_wheelchair_accessible.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/ic_wifi.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/illustratrion_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/illustratrion_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_4.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_5.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_6.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_header_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_header_background_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_header_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/img_header_background_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/logo_splash.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/map_desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/map_desktop.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/notification_icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/placeholder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/placeholder_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/pushpin_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/pushpin_01.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/pushpin_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/pushpin_02.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/rating.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/room_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/room_temperature.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/selected.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/simbol_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/simbol_logo.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/switch_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/switch_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/thumb_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Assets/thumb_slider.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Extensions/ColorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Extensions/ColorExtensions.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/MainPage.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/MainPage.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Package.appxmanifest -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/ButtonFrameRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/ButtonFrameRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CalendarButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CalendarButtonRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CustomSliderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/CustomSliderRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/ExtendedEntryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/Renderers/ExtendedEntryRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.UWP/SmartHotel.Clients.UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.UWP/SmartHotel.Clients.UWP.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Effects/UnderlineTextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Effects/UnderlineTextEffect.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Entitlements.plist -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Info.plist -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Main.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CalendarButtonRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CalendarButtonRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomMapRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomMapRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomNavigationRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomNavigationRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomPageRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/CustomPageRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/ExtendedEntryRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/ExtendedEntryRenderer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/TransparentViewCell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Renderers/TransparentViewCell.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-667h@2x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default-736h@3x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ambient_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ambient_light.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/avatar.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_left.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ball_right.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/be_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/be_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_01.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_02.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_03.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/bg_slider_04.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room@2x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/hero_image_room@3x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_door_nfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_door_nfc.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_1.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_2.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_3.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_4.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_5.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_6.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_7.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/i_hotel_8.jpg -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_air_conditioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_air_conditioning.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_airport_shutle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_airport_shutle.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bath.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bath.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_be_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_be_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_be_green_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_be_green_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_beach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_beach.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bed.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_bot_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_breakfast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_breakfast.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card@2x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_card@3x.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_check_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_check_out.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_dryer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_dryer.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_elevator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_elevator.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_filter.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_fitness_centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_fitness_centre.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_green.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_gym.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_home.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hot_tub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hot_tub.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hotel.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hotel_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_hotel_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_ice_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_indoor_fireplace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_indoor_fireplace.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_key.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_leak_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_logout.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_menu.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_others.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_others.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_others_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_others_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_paperbin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_paperbin.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_paperbin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_paperbin_red.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_parking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_parking.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_pool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_pool.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_room.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_room.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_room_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_room_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_sort.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_star_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_star_active.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_star_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_star_normal.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_table.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_toothbrush_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towel.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towels_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towels_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towels_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_towels_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_tv.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_wheelchair_accessible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_wheelchair_accessible.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/ic_wifi.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/illustratrion_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/illustratrion_bot.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_3.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_header_background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_header_background_1.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_header_background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/img_header_background_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/logo_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/logo_splash.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/map.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/notification_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/notification_icon.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/placeholder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/placeholder_2.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/pushpin_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/pushpin_01.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/pushpin_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/pushpin_02.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/rating.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/room_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/room_temperature.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/selected.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/simbol_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/simbol_logo.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/switch_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/switch_off.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/switch_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/switch_on.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/thumb_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/thumb_slider.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Resources/upload.png -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Services/BrowserCookiesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/Services/BrowserCookiesService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/SmartHotel.Clients.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/SmartHotel.Clients.iOS.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/appcenter-post-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/appcenter-post-build.sh -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients.iOS/packages.config -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/App.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/App.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/AppSettings.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Behaviors/ItemTappedCommandListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Behaviors/ItemTappedCommandListView.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ButtonFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ButtonFrame.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/CalandarChanges.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/CalandarChanges.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Disabled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Disabled.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.MonthYearView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.MonthYearView.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.NumberOfWeek.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.NumberOfWeek.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.OutsideMonth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.OutsideMonth.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Selected.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Selected.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.SpecialDates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.SpecialDates.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Weekdays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.Weekdays.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/Calendar.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/CalendarButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/CalendarButton.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/DateTimeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/DateTimeEventArgs.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/DateTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/DateTypeEnum.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/EnumerableExtensions.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/SpecialDate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/Calendar/SpecialDate.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/CustomMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/CustomMap.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/CustomSlider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/CustomSlider.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ExtendedEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ExtendedEntry.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/GreenChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/GreenChart.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/HorizontalList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/HorizontalList.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/LightChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/LightChart.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ParallaxControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ParallaxControl.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RatingControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RatingControl.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RemoteSettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RemoteSettingsControl.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RemoteSettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/RemoteSettingsControl.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/TemperatureChart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/TemperatureChart.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ToggleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/ToggleButton.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/iOSStatusBarBackground.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/iOSStatusBarBackground.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Controls/iOSStatusBarBackground.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Controls/iOSStatusBarBackground.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/AmbientLightValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/AmbientLightValueConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/CheckInTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/CheckInTimeConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/CountToHeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/CountToHeightConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/EnabledToHeightConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/EnabledToHeightConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/HotelImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/HotelImageConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/InverseBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/InverseBoolConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/MenuItemTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/MenuItemTypeConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/SelectedToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/SelectedToBoolConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/ServiceNameToIconConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/ServiceNameToIconConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Converters/TemperatureValueConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Converters/TemperatureValueConverter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Effects/UnderlineTextEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Effects/UnderlineTextEffect.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Exceptions/ConnectivityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Exceptions/ConnectivityException.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/LocationExtenions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/LocationExtenions.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/ObservableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/ObservableExtension.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/UriBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Extensions/UriBuilderExtensions.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/MapHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/MapHelper.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/StatusBarHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/StatusBarHelper.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/Timer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Helpers/Timer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/MarkupExtensions/TranslateExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/MarkupExtensions/TranslateExtension.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/MessengerKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/MessengerKeys.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Booking.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/BookingSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/BookingSummary.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/City.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/CustomPin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/CustomPin.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/DeviceDesiredData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/DeviceDesiredData.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/DeviceSensorData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/DeviceSensorData.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Hotel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/ILocationResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/ILocationResponse.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/MenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/MenuItem.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/MenuItemType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/MenuItemType.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/NfcParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/NfcParameter.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Notification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Notification.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/NotificationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/NotificationType.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Occupancy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Occupancy.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/RemoteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/RemoteSettings.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Review.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Room.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Service.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/Suggestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/Suggestion.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Models/User.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Resources.resx -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Resources/GreetingMessage.txt: -------------------------------------------------------------------------------- 1 | Welcome To SmartHotels 360 -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/AnalyticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/AnalyticService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/DummyAnalyticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/DummyAnalyticService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/IAnalyticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Analytic/IAnalyticService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/BookingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/BookingService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/FakeBookingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/FakeBookingService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/IBookingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Booking/IBookingService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Chart/FakeChartService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Chart/FakeChartService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Chart/IChartService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Chart/IChartService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Dialog/DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Dialog/DialogService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Dialog/IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Dialog/IDialogService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/File/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/File/FileService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/File/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/File/IFileService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/FakeLocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/FakeLocationService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/ILocationService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Geolocator/LocationService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/FakeHotelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/FakeHotelService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/HotelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/HotelService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/IHotelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Hotel/IHotelService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/FakeRoomAmbientLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/FakeRoomAmbientLight.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/FakeRoomTemperature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/FakeRoomTemperature.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/IRoomDevicesDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/IRoomDevicesDataService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomAmbientLight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomAmbientLight.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomDevicesDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomDevicesDataService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomSensorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomSensorBase.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomTemperature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/RoomTemperature.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/SensorDataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/SensorDataType.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/SensorType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/SensorType.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/TemperatureExtesions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/TemperatureExtesions.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/TemperatureValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/IoT/TemperatureValue.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/NFC/INfcService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/NFC/INfcService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Navigation/INavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Navigation/INavigationService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Navigation/NavigationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Navigation/NavigationService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/OpenUri/IOpenUriService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/OpenUri/IOpenUriService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/OpenUri/OpenUriService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/OpenUri/OpenUriService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Request/IRequestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Request/IRequestService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Request/RequestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Request/RequestService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/BaseSettingsLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/BaseSettingsLoader.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/ISettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/ISettingsService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/SettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Settings/SettingsService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Suggestion/ISuggestionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Suggestion/ISuggestionService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Services/Suggestion/SuggestionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Services/Suggestion/SuggestionService.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/SmartHotel.Clients.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/SmartHotel.Clients.csproj -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Utils/AsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Utils/AsyncCommand.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Utils/NavigationBarAttachedProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Utils/NavigationBarAttachedProperty.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Utils/PreferencesHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Utils/PreferencesHelpers.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ActionValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ActionValidationRule.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/EmailRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/EmailRule.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IValidationRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IValidationRule.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IValidity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IValidity.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IsNotNullOrEmptyRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/IsNotNullOrEmptyRule.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ValidUrlRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ValidUrlRule.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ValidatableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Validations/ValidatableObject.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/IHandleView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/IHandleView.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/Locator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/Locator.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/Base/ViewModelBase.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingCalendarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingCalendarViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingHotelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingHotelViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingHotelsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingHotelsViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/BookingViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/CheckoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/CheckoutViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/ExtendedSplashViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/ExtendedSplashViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/HomeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/HomeViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/LoginViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MenuViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MenuViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MyRoomViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/MyRoomViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/NotificationsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/NotificationsViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/OpenDoorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/OpenDoorViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/SettingsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/SettingsViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/SuggestionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/ViewModels/SuggestionsViewModel.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingCalendarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingCalendarView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingCalendarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingCalendarView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelsView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingHotelsView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/BookingView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/CheckoutView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/CheckoutView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/CheckoutView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/CheckoutView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/CustomNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/CustomNavigationPage.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/CustomNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/CustomNavigationPage.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/ExtendedSplashView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/ExtendedSplashView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/ExtendedSplashView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/ExtendedSplashView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/HomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/HomeView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/HomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/HomeView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/LoginView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/LoginView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/LoginView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/LoginView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MainView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MenuView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MenuView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MenuView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MenuView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MyRoomView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MyRoomView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/MyRoomView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/MyRoomView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/NotificationsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/NotificationsView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/NotificationsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/NotificationsView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/OpenDoorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/OpenDoorView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/OpenDoorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/OpenDoorView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/SettingsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/SettingsView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/SettingsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/SettingsView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Styles/LoginView.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Styles/LoginView.css -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/SuggestionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/SuggestionsView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/SuggestionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/SuggestionsView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/HotelItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/HotelItemTemplate.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/HotelItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/HotelItemTemplate.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/MenuItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/MenuItemTemplate.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/MenuItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/MenuItemTemplate.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ReviewItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ReviewItemTemplate.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ReviewItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ReviewItemTemplate.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ServiceItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ServiceItemTemplate.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ServiceItemTemplate.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/ServiceItemTemplate.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/SuggestionItemTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/Templates/SuggestionItemTemplate.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpHomeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpHomeView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpHomeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpHomeView.xaml.cs -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpSuggestionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpSuggestionsView.xaml -------------------------------------------------------------------------------- /Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpSuggestionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/SmartHotel360-Mobile/HEAD/Source/SmartHotel.Clients/SmartHotel.Clients/Views/UwpSuggestionsView.xaml.cs --------------------------------------------------------------------------------