├── .gitattributes ├── .gitignore ├── AndroidRepairApp ├── README-Android.md ├── app │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── canviz │ │ │ └── repairapp │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── canviz │ │ │ └── repairapp │ │ │ ├── App.java │ │ │ ├── Constants.java │ │ │ ├── IncidentActivity.java │ │ │ ├── IncidentDetailActivity.java │ │ │ ├── SigninActivity.java │ │ │ ├── data │ │ │ ├── GroupConversationModel.java │ │ │ ├── GroupFileModel.java │ │ │ ├── GroupNoteBookModel.java │ │ │ ├── GroupVideoModel.java │ │ │ ├── IncidentModel.java │ │ │ ├── IncidentWorkflowTaskModel.java │ │ │ ├── InspectionInspectorModel.java │ │ │ ├── InspectionModel.java │ │ │ ├── InspectorModel.java │ │ │ ├── PropertyModel.java │ │ │ ├── RepairPhotoModel.java │ │ │ ├── RoomModel.java │ │ │ ├── TaskModel.java │ │ │ └── UserModel.java │ │ │ ├── graph │ │ │ ├── Conversation.java │ │ │ ├── Drive.java │ │ │ ├── DriveFetcher.java │ │ │ ├── DriveItem.java │ │ │ ├── DriveItemCollectionOperations.java │ │ │ ├── DriveItemFetcher.java │ │ │ ├── DriveItemOperations.java │ │ │ ├── DriveOperations.java │ │ │ ├── Identity.java │ │ │ └── IdentitySet.java │ │ │ └── utility │ │ │ ├── AsyncBitmapLoader.java │ │ │ ├── AuthenticationHelper.java │ │ │ ├── EmailHelper.java │ │ │ ├── FileHelper.java │ │ │ ├── GraphAuthenticationProvider.java │ │ │ ├── GroupConversationAdapter.java │ │ │ ├── GroupFileAdapter.java │ │ │ ├── GroupMemberAdapter.java │ │ │ ├── GroupNoteAdapter.java │ │ │ ├── Helper.java │ │ │ ├── IncidentAdapter.java │ │ │ ├── ListHelper.java │ │ │ └── SPListItemWrapper.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── ic_repair.png │ │ ├── drawable-mdpi │ │ └── ic_repair.png │ │ ├── drawable-xhdpi │ │ ├── Thumbs.db │ │ ├── at.png │ │ ├── back.png │ │ ├── camera.png │ │ ├── close.png │ │ ├── date.png │ │ ├── default_logo.png │ │ ├── house.png │ │ ├── ic_repair.png │ │ ├── ico_excel.png │ │ ├── ico_powerpoint.png │ │ ├── ico_word.png │ │ ├── left_nav1.png │ │ ├── left_nav2.png │ │ ├── left_nav3.png │ │ ├── left_nav4.png │ │ ├── left_nav5.png │ │ ├── left_nav6.png │ │ ├── left_nav7.png │ │ ├── left_nav_selected1.png │ │ ├── left_nav_selected2.png │ │ ├── left_nav_selected3.png │ │ ├── left_nav_selected4.png │ │ ├── left_nav_selected5.png │ │ ├── left_nav_selected6.png │ │ ├── left_nav_selected7.png │ │ ├── list_icon1.png │ │ ├── list_icon2.png │ │ ├── list_icon3.png │ │ ├── list_icon_focus1.png │ │ ├── list_icon_focus2.png │ │ ├── list_icon_focus3.png │ │ ├── logo.png │ │ ├── logo_incidents.png │ │ ├── open_onenote.png │ │ ├── person.png │ │ ├── property_logo.png │ │ ├── tab.png │ │ └── video.png │ │ ├── drawable-xxhdpi │ │ └── ic_repair.png │ │ ├── drawable │ │ ├── button_corner.xml │ │ ├── conversation_img_selector.xml │ │ ├── file_img_selector.xml │ │ ├── list_selector.xml │ │ ├── note_img_selector.xml │ │ └── text_selector.xml │ │ ├── layout │ │ ├── activity_incident.xml │ │ ├── activity_incident_detail.xml │ │ ├── activity_signin.xml │ │ ├── conversation_item.xml │ │ ├── file_item.xml │ │ ├── footview.xml │ │ ├── incident_item.xml │ │ ├── member_item.xml │ │ └── note_item.xml │ │ ├── menu │ │ ├── menu_incident.xml │ │ ├── menu_incident_detail.xml │ │ └── menu_signin.xml │ │ ├── values-v21 │ │ └── styles.xml │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml ├── build.gradle ├── gradle.properties ├── gradle │ ├── AndroidRepairApp - Shortcut.lnk │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── CordovaRepairApp ├── CordovaRepairApp.sln ├── CordovaRepairApp │ ├── CordovaRepairApp.jsproj │ ├── Project_Readme.html │ ├── config.xml │ ├── css │ │ └── incidents.css │ ├── images │ │ ├── addnew.png │ │ ├── ajax-loader.gif │ │ ├── before.png │ │ ├── calendar.png │ │ ├── camera_gray.png │ │ ├── close.png │ │ ├── default.png │ │ ├── dispatcher.png │ │ ├── email.png │ │ ├── finalize_repair.png │ │ ├── home.png │ │ ├── incident_detailtab.png │ │ ├── inspector.png │ │ ├── logout.png │ │ ├── man.png │ │ └── navigation_background.png │ ├── incidents.html │ ├── merges │ │ ├── android │ │ │ ├── css │ │ │ │ └── incidents.css │ │ │ ├── images │ │ │ │ ├── before.png │ │ │ │ ├── cpm_logo.png │ │ │ │ └── incident_detailtab.png │ │ │ ├── incidents.html │ │ │ └── scripts │ │ │ │ ├── android2.3-jscompat.js │ │ │ │ └── platformOverrides.js │ │ └── windows │ │ │ ├── css │ │ │ └── incidents.css │ │ │ ├── images │ │ │ ├── before.png │ │ │ ├── calendar.png │ │ │ ├── cpm_logo.png │ │ │ ├── email.png │ │ │ ├── home.png │ │ │ └── man.png │ │ │ ├── incidents.html │ │ │ ├── scripts │ │ │ ├── app │ │ │ │ └── rpDevice.js │ │ │ ├── platformOverrides.js │ │ │ └── winstore-jscompat.js │ │ │ └── services │ │ │ └── office365 │ │ │ └── scripts │ │ │ └── InAppBrowserOverride.js │ ├── packages.config │ ├── plugins │ │ ├── de.appplant.cordova.plugin.email-composer │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ ├── android │ │ │ │ │ └── EmailComposer.java │ │ │ │ ├── ios │ │ │ │ │ ├── APPEmailComposer.h │ │ │ │ │ └── APPEmailComposer.m │ │ │ │ ├── windows │ │ │ │ │ └── EmailComposerProxy.js │ │ │ │ └── wp8 │ │ │ │ │ ├── EmailComposer.cs │ │ │ │ │ └── Options.cs │ │ │ └── www │ │ │ │ └── email_composer.js │ │ ├── org.apache.cordova.camera │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ ├── android │ │ │ │ │ ├── CameraLauncher.java │ │ │ │ │ ├── ExifHelper.java │ │ │ │ │ └── FileHelper.java │ │ │ │ ├── blackberry10 │ │ │ │ │ └── index.js │ │ │ │ ├── browser │ │ │ │ │ └── CameraProxy.js │ │ │ │ ├── firefoxos │ │ │ │ │ └── CameraProxy.js │ │ │ │ ├── ios │ │ │ │ │ ├── CDVCamera.h │ │ │ │ │ ├── CDVCamera.m │ │ │ │ │ ├── CDVExif.h │ │ │ │ │ ├── CDVJpegHeaderWriter.h │ │ │ │ │ └── CDVJpegHeaderWriter.m │ │ │ │ ├── ubuntu │ │ │ │ │ ├── CaptureWidget.qml │ │ │ │ │ ├── back.png │ │ │ │ │ ├── camera.cpp │ │ │ │ │ ├── camera.h │ │ │ │ │ ├── shoot.png │ │ │ │ │ ├── toolbar-left.png │ │ │ │ │ ├── toolbar-middle.png │ │ │ │ │ └── toolbar-right.png │ │ │ │ ├── windows │ │ │ │ │ └── CameraProxy.js │ │ │ │ └── wp │ │ │ │ │ └── Camera.cs │ │ │ └── www │ │ │ │ ├── Camera.js │ │ │ │ ├── CameraConstants.js │ │ │ │ ├── CameraPopoverHandle.js │ │ │ │ ├── CameraPopoverOptions.js │ │ │ │ ├── blackberry10 │ │ │ │ └── assets │ │ │ │ │ ├── camera.html │ │ │ │ │ └── camera.js │ │ │ │ └── ios │ │ │ │ └── CameraPopoverHandle.js │ │ ├── org.apache.cordova.dialogs │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ │ ├── android │ │ │ │ │ └── Notification.java │ │ │ │ ├── blackberry10 │ │ │ │ │ └── index.js │ │ │ │ ├── firefoxos │ │ │ │ │ └── notification.js │ │ │ │ ├── ios │ │ │ │ │ ├── CDVNotification.bundle │ │ │ │ │ │ └── beep.wav │ │ │ │ │ ├── CDVNotification.h │ │ │ │ │ └── CDVNotification.m │ │ │ │ ├── ubuntu │ │ │ │ │ ├── notification.cpp │ │ │ │ │ ├── notification.h │ │ │ │ │ └── notification.qml │ │ │ │ ├── windows8 │ │ │ │ │ └── NotificationProxy.js │ │ │ │ └── wp │ │ │ │ │ ├── Notification.cs │ │ │ │ │ ├── NotificationBox.xaml │ │ │ │ │ ├── NotificationBox.xaml.cs │ │ │ │ │ └── notification-beep.wav │ │ │ └── www │ │ │ │ ├── android │ │ │ │ └── notification.js │ │ │ │ ├── blackberry10 │ │ │ │ ├── beep.js │ │ │ │ └── notification-beep.wav │ │ │ │ ├── firefoxos │ │ │ │ ├── danger-press.png │ │ │ │ ├── danger.png │ │ │ │ ├── default.png │ │ │ │ ├── gradient.png │ │ │ │ ├── notification.css │ │ │ │ ├── pattern.png │ │ │ │ └── recommend.png │ │ │ │ └── notification.js │ │ └── org.apache.cordova.inappbrowser │ │ │ ├── .fetch.json │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── RELEASENOTES.md │ │ │ ├── doc │ │ │ ├── de │ │ │ │ └── index.md │ │ │ ├── es │ │ │ │ └── index.md │ │ │ ├── fr │ │ │ │ └── index.md │ │ │ ├── index.md │ │ │ ├── it │ │ │ │ └── index.md │ │ │ ├── ja │ │ │ │ └── index.md │ │ │ ├── ko │ │ │ │ └── index.md │ │ │ ├── pl │ │ │ │ └── index.md │ │ │ ├── ru │ │ │ │ └── index.md │ │ │ └── zh │ │ │ │ └── index.md │ │ │ ├── package.json │ │ │ ├── plugin.xml │ │ │ ├── src │ │ │ ├── amazon │ │ │ │ ├── InAppBrowser.java │ │ │ │ └── InAppChromeClient.java │ │ │ ├── android │ │ │ │ ├── InAppBrowser.java │ │ │ │ ├── InAppBrowserDialog.java │ │ │ │ ├── InAppChromeClient.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ │ │ └── drawable-xxhdpi │ │ │ │ │ ├── ic_action_next_item.png │ │ │ │ │ ├── ic_action_previous_item.png │ │ │ │ │ └── ic_action_remove.png │ │ │ ├── blackberry10 │ │ │ │ └── README.md │ │ │ ├── firefoxos │ │ │ │ └── InAppBrowserProxy.js │ │ │ ├── ios │ │ │ │ ├── CDVInAppBrowser.h │ │ │ │ └── CDVInAppBrowser.m │ │ │ ├── ubuntu │ │ │ │ ├── InAppBrowser.qml │ │ │ │ ├── close.png │ │ │ │ ├── inappbrowser.cpp │ │ │ │ └── inappbrowser.h │ │ │ └── wp │ │ │ │ └── InAppBrowser.cs │ │ │ ├── tests │ │ │ ├── plugin.xml │ │ │ ├── resources │ │ │ │ ├── inject.css │ │ │ │ ├── inject.html │ │ │ │ ├── inject.js │ │ │ │ ├── local.html │ │ │ │ ├── local.pdf │ │ │ │ └── video.html │ │ │ └── tests.js │ │ │ └── www │ │ │ ├── inappbrowser.js │ │ │ └── windows8 │ │ │ └── InAppBrowserProxy.js │ ├── res │ │ ├── icons │ │ │ ├── android │ │ │ │ ├── icon-36-ldpi.png │ │ │ │ ├── icon-48-mdpi.png │ │ │ │ ├── icon-72-hdpi.png │ │ │ │ └── icon-96-xhdpi.png │ │ │ ├── ios │ │ │ │ ├── icon-40-2x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-50-2x.png │ │ │ │ ├── icon-50.png │ │ │ │ ├── icon-57-2x.png │ │ │ │ ├── icon-57.png │ │ │ │ ├── icon-60-2x.png │ │ │ │ ├── icon-60.png │ │ │ │ ├── icon-72-2x.png │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon-76-2x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-small-2x.png │ │ │ │ └── icon-small.png │ │ │ ├── windows │ │ │ │ ├── Square150x150Logo.scale-240.png │ │ │ │ ├── Square44x44Logo.scale-240.png │ │ │ │ ├── Square71x71Logo.scale-240.png │ │ │ │ ├── StoreLogo.scale-240.png │ │ │ │ ├── Wide310x150Logo.scale-240.png │ │ │ │ ├── logo.png │ │ │ │ ├── smalllogo.png │ │ │ │ └── storelogo.png │ │ │ └── wp8 │ │ │ │ ├── icon-173-tile.png │ │ │ │ └── icon-62-tile.png │ │ ├── native │ │ │ └── android │ │ │ │ └── ant.properties │ │ └── screens │ │ │ ├── android │ │ │ ├── screen-hdpi-landscape.png │ │ │ ├── screen-hdpi-portrait.png │ │ │ ├── screen-ldpi-landscape.png │ │ │ ├── screen-ldpi-portrait.png │ │ │ ├── screen-mdpi-landscape.png │ │ │ ├── screen-mdpi-portrait.png │ │ │ ├── screen-xhdpi-landscape.png │ │ │ └── screen-xhdpi-portrait.png │ │ │ ├── ios │ │ │ ├── screen-ipad-landscape-2x.png │ │ │ ├── screen-ipad-landscape.png │ │ │ ├── screen-ipad-portrait-2x.png │ │ │ ├── screen-ipad-portrait.png │ │ │ ├── screen-iphone-568h-2x.png │ │ │ ├── screen-iphone-portrait-2x.png │ │ │ └── screen-iphone-portrait.png │ │ │ ├── windows │ │ │ ├── SplashScreen.scale-240.png │ │ │ └── splashscreen.png │ │ │ └── wp8 │ │ │ └── screen-portrait.jpg │ ├── scripts │ │ ├── app │ │ │ ├── incidentCtrl.js │ │ │ ├── incidents.js │ │ │ ├── listClient.js │ │ │ ├── rpDevice.js │ │ │ ├── rpUtil.js │ │ │ └── viewModel.js │ │ ├── jquery-2.1.1.intellisense.js │ │ ├── jquery-2.1.1.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── knockout-3.2.0.js │ │ └── platformOverrides.js │ └── services │ │ └── office365 │ │ ├── redirectTarget.html │ │ ├── scripts │ │ ├── InAppBrowserOverride.js │ │ ├── aadgraph.js │ │ ├── exchange.js │ │ ├── o365auth.js │ │ ├── o365discovery.js │ │ ├── o365loader.js │ │ ├── sharepoint.js │ │ ├── typings │ │ │ ├── exchange.d.ts │ │ │ ├── o365auth.d.ts │ │ │ ├── o365discovery.d.ts │ │ │ ├── sharepoint.d.ts │ │ │ └── utility.d.ts │ │ └── utility.js │ │ └── settings │ │ ├── settings.js │ │ └── typings │ │ └── settings.d.ts └── README-Cordova.md ├── Documents ├── AVD Nexus 9 Advanced Settings.png ├── AVD System Image Lollipop.png ├── AVD Tablet Nexus 9.png ├── Cordova - Android Simulator.png ├── Cordova - Windows Simulator.png ├── Cordova - iOS Simulator.png ├── Create AVD.png ├── Demo Script.pptx ├── Demo Walk Through Video.png ├── Enable Keychain Sharing.png ├── Install OneNote In Android Emulator.png ├── Mail AFO - Admin.png ├── Mail AFO - Incident Details.png ├── Mail AFO - Link.png ├── Mail AFO - Redir.png ├── Nexus 9 AVD Settings - 2.png ├── Nexus 9 AVD Settings.png ├── O365 API AD Permissions-2.png ├── O365 API AD Permissions-3.png ├── O365 API AD Permissions.jpg ├── O365 API Calendar Permissions-2.png ├── O365 API Calendar Permissions-3.png ├── O365 API Calendar Permissions.jpg ├── O365 API Mail Permissions-2.png ├── O365 API Mail Permissions-3.png ├── O365 API Mail Permissions.jpg ├── O365 API Permissions.jpg ├── O365 API Sites Permissions-2.png ├── O365 API Sites Permissions-3.png ├── O365 API Sites Permissions.jpg ├── O365 App Settings-2.png ├── O365 App Settings.jpg ├── O365 OneNote AAD App Permissions 2.jpg ├── O365 SP AAD App Permissions 2.jpg ├── O365 SP AAD App Permissions.jpg ├── O365 Unified API AAD Permissions.jpg ├── O365 Unified API AD Permissions.jpg ├── OneNote.apk ├── READMEtest.md ├── Select Nexus 9 AVD - 2.png ├── Select Nexus 9 AVD.png ├── Starting Nexus 9 AVD.png ├── Webhook Listen Notification1.png ├── Webhook Listen Notification2.png ├── Xamarin Nexus 9 Simulator.png ├── android constants file.png ├── contacts.png ├── content provision success.jpg ├── dashboard 2.jpg ├── dashboard 3.jpg ├── dashboard.jpg ├── demo data provision success-2.png ├── demo data provision success.jpg ├── demo_video_thumb.png ├── grant consent.jpg ├── home-controller.jpg ├── iOS App AAD Perms.png ├── iOS App Exchange Perms.png ├── iOS App SP Perms.png ├── inspection pod install.png ├── integrating-web-apps-with-office-365.png ├── ios-cordova-android-apps-with-office-365.png ├── licenses.jpg ├── office_dev_matters.png ├── people.png ├── pod install.png ├── repair pod install.png ├── sc provision success-2.png ├── sc provision success.jpg ├── streaming-video-service.png └── workflow provision success.jpg ├── LICENSE ├── MailAFO ├── MailAFO.sln ├── MailAFO │ ├── MailAFO.csproj │ └── MailAFOManifest │ │ ├── MailAFO.xml │ │ ├── MailApp.xml │ │ └── SharePointProjectItem.spdata └── README-Mail.md ├── PropertyManagerMyApp ├── PropertyManagerMyApp.sln ├── PropertyManagerMyApp │ ├── App_Data │ │ └── Notifications.xml │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ ├── RouteConfig.cs │ │ └── Startup.Auth.cs │ ├── Assemblies │ │ ├── Microsoft.Online.SharePoint.Client.Tenant.dll │ │ └── Microsoft.Workflow.Common.dll │ ├── Content │ │ ├── Fonts │ │ │ ├── Bootstrap │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── Office365-Icons │ │ │ │ ├── Read Me.txt │ │ │ │ ├── fonts │ │ │ │ │ ├── icomoon.eot │ │ │ │ │ ├── icomoon.svg │ │ │ │ │ ├── icomoon.ttf │ │ │ │ │ └── icomoon.woff │ │ │ │ ├── selection.json │ │ │ │ └── style.css │ │ │ ├── Segoe-UI-Bold-Italic │ │ │ │ ├── 3fa09cba-69f7-4b32-8f5f-f0af92543523-1.ttf │ │ │ │ ├── 3fa09cba-69f7-4b32-8f5f-f0af92543523-1.woff2 │ │ │ │ ├── 3fa09cba-69f7-4b32-8f5f-f0af92543523-2.eot │ │ │ │ ├── 3fa09cba-69f7-4b32-8f5f-f0af92543523-3.woff │ │ │ │ ├── 3fa09cba-69f7-4b32-8f5f-f0af92543523-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Bold │ │ │ │ ├── custom-text.txt │ │ │ │ ├── demo.htm │ │ │ │ ├── f5dd91f1-2016-48f8-a46c-e3418a52c859-1.ttf │ │ │ │ ├── f5dd91f1-2016-48f8-a46c-e3418a52c859-1.woff2 │ │ │ │ ├── f5dd91f1-2016-48f8-a46c-e3418a52c859-2.eot │ │ │ │ ├── f5dd91f1-2016-48f8-a46c-e3418a52c859-3.woff │ │ │ │ └── f5dd91f1-2016-48f8-a46c-e3418a52c859-4.svg │ │ │ ├── Segoe-UI-Italic │ │ │ │ ├── 05577455-4c3f-4f49-a71e-2c5b3055ec53-1.ttf │ │ │ │ ├── 05577455-4c3f-4f49-a71e-2c5b3055ec53-1.woff2 │ │ │ │ ├── 05577455-4c3f-4f49-a71e-2c5b3055ec53-2.eot │ │ │ │ ├── 05577455-4c3f-4f49-a71e-2c5b3055ec53-3.woff │ │ │ │ ├── 05577455-4c3f-4f49-a71e-2c5b3055ec53-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Light-Italic │ │ │ │ ├── custom-text.txt │ │ │ │ ├── demo.htm │ │ │ │ ├── e23dde0e-e91f-41e0-b78c-ebb9e232e98d-1.ttf │ │ │ │ ├── e23dde0e-e91f-41e0-b78c-ebb9e232e98d-1.woff2 │ │ │ │ ├── e23dde0e-e91f-41e0-b78c-ebb9e232e98d-2.eot │ │ │ │ ├── e23dde0e-e91f-41e0-b78c-ebb9e232e98d-3.woff │ │ │ │ └── e23dde0e-e91f-41e0-b78c-ebb9e232e98d-4.svg │ │ │ ├── Segoe-UI-Light │ │ │ │ ├── 45a13f65-5199-4a22-821e-9b7d7795518e-1.ttf │ │ │ │ ├── 45a13f65-5199-4a22-821e-9b7d7795518e-1.woff2 │ │ │ │ ├── 45a13f65-5199-4a22-821e-9b7d7795518e-2.eot │ │ │ │ ├── 45a13f65-5199-4a22-821e-9b7d7795518e-3.woff │ │ │ │ ├── 45a13f65-5199-4a22-821e-9b7d7795518e-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Semibold-Italic │ │ │ │ ├── 191748c9-7f55-43c3-a9c3-467cf18f896a-1.ttf │ │ │ │ ├── 191748c9-7f55-43c3-a9c3-467cf18f896a-1.woff2 │ │ │ │ ├── 191748c9-7f55-43c3-a9c3-467cf18f896a-2.eot │ │ │ │ ├── 191748c9-7f55-43c3-a9c3-467cf18f896a-3.woff │ │ │ │ ├── 191748c9-7f55-43c3-a9c3-467cf18f896a-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Semibold │ │ │ │ ├── afae52c9-5d08-4193-8984-bb4346fd493c-1.ttf │ │ │ │ ├── afae52c9-5d08-4193-8984-bb4346fd493c-1.woff2 │ │ │ │ ├── afae52c9-5d08-4193-8984-bb4346fd493c-2.eot │ │ │ │ ├── afae52c9-5d08-4193-8984-bb4346fd493c-3.woff │ │ │ │ ├── afae52c9-5d08-4193-8984-bb4346fd493c-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Semilight-Italic │ │ │ │ ├── b01764d0-636e-4ff9-b1fb-4137a1a836aa-1.ttf │ │ │ │ ├── b01764d0-636e-4ff9-b1fb-4137a1a836aa-1.woff2 │ │ │ │ ├── b01764d0-636e-4ff9-b1fb-4137a1a836aa-2.eot │ │ │ │ ├── b01764d0-636e-4ff9-b1fb-4137a1a836aa-3.woff │ │ │ │ ├── b01764d0-636e-4ff9-b1fb-4137a1a836aa-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ ├── Segoe-UI-Semilight │ │ │ │ ├── b692a79e-1bc5-4bcd-b355-7be3ef969fb7-1.ttf │ │ │ │ ├── b692a79e-1bc5-4bcd-b355-7be3ef969fb7-1.woff2 │ │ │ │ ├── b692a79e-1bc5-4bcd-b355-7be3ef969fb7-2.eot │ │ │ │ ├── b692a79e-1bc5-4bcd-b355-7be3ef969fb7-3.woff │ │ │ │ ├── b692a79e-1bc5-4bcd-b355-7be3ef969fb7-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ │ └── Segoe-UI │ │ │ │ ├── 3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-1.ttf │ │ │ │ ├── 3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-1.woff2 │ │ │ │ ├── 3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-2.eot │ │ │ │ ├── 3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-3.woff │ │ │ │ ├── 3ca1af51-981a-4e1c-b9c6-a66d0a5fe3c0-4.svg │ │ │ │ ├── custom-text.txt │ │ │ │ └── demo.htm │ │ ├── Images │ │ │ ├── AADAppLogos │ │ │ │ ├── logo-prop-man.jpg │ │ │ │ └── logo-prop-man.png │ │ │ ├── DefaultUserPhoto.jpg │ │ │ ├── Mail AFO - Admin.png │ │ │ ├── Mail AFO - Incident Details.png │ │ │ ├── Mail AFO - Link.png │ │ │ ├── Mail AFO - Redir.png │ │ │ ├── O365 API AD Permissions.jpg │ │ │ ├── O365 API Calendar Permissions.jpg │ │ │ ├── O365 API Mail Permissions.jpg │ │ │ ├── O365 API Permissions.jpg │ │ │ ├── O365 API Sites Permissions.jpg │ │ │ ├── O365 App Settings.jpg │ │ │ ├── broken-window1.jpg │ │ │ ├── btn-icon-1.png │ │ │ ├── btn-icon-2.png │ │ │ ├── contoso-logo.png │ │ │ ├── gray-bg.png │ │ │ ├── iOS App AAD Perms.png │ │ │ ├── iOS App Exchange Perms.png │ │ │ ├── iOS App SP Perms.png │ │ │ ├── ico-add.png │ │ │ ├── ico-at.png │ │ │ ├── ico-attention.png │ │ │ ├── ico-battery.png │ │ │ ├── ico-calendar.png │ │ │ ├── ico-camera.png │ │ │ ├── ico-cancel.png │ │ │ ├── ico-comments.png │ │ │ ├── ico-electric.png │ │ │ ├── ico-faucet.png │ │ │ ├── ico-finalize.png │ │ │ ├── ico-home.png │ │ │ ├── ico-inspect.png │ │ │ ├── ico-location.png │ │ │ ├── ico-office-contact.png │ │ │ ├── ico-owner.png │ │ │ ├── ico-plus.png │ │ │ ├── ico-repair.png │ │ │ ├── ico-rooms.png │ │ │ ├── ico-search.png │ │ │ ├── ico-settings.png │ │ │ ├── ico-stove.png │ │ │ ├── ico-structure.png │ │ │ ├── ico-warning.png │ │ │ ├── ico-wifi.png │ │ │ ├── incident.jpg │ │ │ ├── loading.gif │ │ │ ├── logo-prop-main.jpg │ │ │ ├── logo-prop-main.png │ │ │ ├── logo_office.png │ │ │ ├── orange-bg.png │ │ │ ├── people │ │ │ │ ├── Alisa Lawyer.jpg │ │ │ │ ├── Chris Gray.jpg │ │ │ │ ├── Katie Jordan.jpg │ │ │ │ ├── Margaret Au.jpg │ │ │ │ ├── Rob Barker.jpg │ │ │ │ ├── Ron Gabel.jpg │ │ │ │ └── Steven Wright.jpg │ │ │ ├── properties │ │ │ │ ├── house1.jpg │ │ │ │ ├── house2.jpg │ │ │ │ ├── house3.jpg │ │ │ │ ├── house4.jpg │ │ │ │ └── house5.jpg │ │ │ ├── property1Incidents │ │ │ │ ├── broken-disposal.JPG │ │ │ │ ├── broken-window-1.jpg │ │ │ │ ├── broken-window-10.jpg │ │ │ │ ├── broken-window-11.jpg │ │ │ │ ├── broken-window-12.jpg │ │ │ │ ├── broken-window-13.jpg │ │ │ │ ├── broken-window-14.jpg │ │ │ │ ├── broken-window-15.jpg │ │ │ │ ├── broken-window-2.jpg │ │ │ │ ├── broken-window-3.jpg │ │ │ │ ├── broken-window-4.jpg │ │ │ │ ├── broken-window-5.jpg │ │ │ │ ├── broken-window-6.jpg │ │ │ │ ├── broken-window-7.jpg │ │ │ │ ├── broken-window-8.jpg │ │ │ │ ├── broken-window-9.jpg │ │ │ │ ├── broken-window.jpg │ │ │ │ └── leaky-faucet.JPG │ │ │ ├── property1Repairs │ │ │ │ ├── fixed sink.jpeg │ │ │ │ ├── fixed-disposal.jpeg │ │ │ │ └── fixed-window.jpg │ │ │ ├── property1Rooms │ │ │ │ ├── bathroom 1.jpg │ │ │ │ ├── bathroom 2.jpg │ │ │ │ ├── bedroom 1.jpg │ │ │ │ ├── bedroom 2.jpg │ │ │ │ ├── dining room.png │ │ │ │ ├── kitchen.jpg │ │ │ │ └── living room.jpg │ │ │ ├── property2Rooms │ │ │ │ ├── foyer.JPG │ │ │ │ ├── guest bedroom.jpg │ │ │ │ ├── kitchenette.JPG │ │ │ │ ├── laundry room.jpg │ │ │ │ ├── lower bathroom.jpg │ │ │ │ ├── master bedroom.png │ │ │ │ └── upper bathroom.jpg │ │ │ ├── topbar-left.png │ │ │ └── topbar-right.png │ │ ├── Office.css │ │ ├── SampleData.xml │ │ ├── Site.css │ │ ├── Videos │ │ │ └── LeakyFaucet[4].mp4 │ │ ├── Workbooks │ │ │ ├── Property1 │ │ │ │ └── Property-Costs.xlsx │ │ │ ├── Property2 │ │ │ │ └── Property-Costs.xlsx │ │ │ ├── Property3 │ │ │ │ └── Property-Costs.xlsx │ │ │ ├── Property4 │ │ │ │ └── Property-Costs.xlsx │ │ │ └── Property5 │ │ │ │ └── Property-Costs.xlsx │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── contoso.css │ │ ├── iconAttribution.css │ │ ├── mailAFO.css │ │ └── themes │ │ │ └── base │ │ │ ├── core.css │ │ │ ├── datepicker.css │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── theme.css │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── DashboardController.cs │ │ ├── HomeController.cs │ │ ├── MailAFOController.cs │ │ ├── NotificationController.cs │ │ ├── O365CalendarController.cs │ │ ├── O365SiteProvisioningController.cs │ │ ├── PhotoController.cs │ │ ├── TestController.cs │ │ └── WebHooksController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ ├── AuditRepairModel.cs │ │ ├── CalendarEvent.cs │ │ ├── CreateTaskViewModel.cs │ │ ├── Dashboard.cs │ │ ├── GraphModelsExtension.cs │ │ ├── MailAFOModel.cs │ │ ├── ProvisionDemoData.cs │ │ ├── RepairCompletionModel.cs │ │ ├── ScheduleRepairModel.cs │ │ ├── UploadFileModel.cs │ │ └── WebHooks.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyManagerMyApp.csproj │ ├── Scripts │ │ ├── Office │ │ │ ├── 1.1 │ │ │ │ ├── OfficeThemes.css │ │ │ │ ├── access-web-16.00.debug.js │ │ │ │ ├── access-web-16.00.js │ │ │ │ ├── ar-sa │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── bg-bg │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── cs-cz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── da-dk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── de-de │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── el-gr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── en-us │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── es-es │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── et-ee │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── excel-15.01.debug.js │ │ │ │ ├── excel-15.01.js │ │ │ │ ├── excel-15.debug.js │ │ │ │ ├── excel-15.js │ │ │ │ ├── excel-web-16.00.debug.js │ │ │ │ ├── excel-web-16.00.js │ │ │ │ ├── excel-win32-16.00.debug.js │ │ │ │ ├── excel-win32-16.00.js │ │ │ │ ├── excelwebapp-15.01.debug.js │ │ │ │ ├── excelwebapp-15.01.js │ │ │ │ ├── excelwebapp-15.debug.js │ │ │ │ ├── excelwebapp-15.js │ │ │ │ ├── fi-fi │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── fr-fr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── he-il │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hi-in │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hr-hr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── hu-hu │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── id-id │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── it-it │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ja-jp │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── kk-kz │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ko-kr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lt-lt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── lv-lv │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ms-my │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nb-no │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── nl-nl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── o15apptofilemappingtable.debug.js │ │ │ │ ├── o15apptofilemappingtable.js │ │ │ │ ├── office-vsdoc.js │ │ │ │ ├── office.debug.js │ │ │ │ ├── office.js │ │ │ │ ├── outlook-15.01.debug.js │ │ │ │ ├── outlook-15.01.js │ │ │ │ ├── outlook-15.debug.js │ │ │ │ ├── outlook-15.js │ │ │ │ ├── outlook-web-16.00.debug.js │ │ │ │ ├── outlook-web-16.00.js │ │ │ │ ├── outlook-win32-16.00.debug.js │ │ │ │ ├── outlook-win32-16.00.js │ │ │ │ ├── outlook-win32.debug-vsdoc.js │ │ │ │ ├── outlookwebapp-15.01.debug.js │ │ │ │ ├── outlookwebapp-15.01.js │ │ │ │ ├── outlookwebapp-15.debug.js │ │ │ │ ├── outlookwebapp-15.js │ │ │ │ ├── pl-pl │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── powerpoint-15.01.debug.js │ │ │ │ ├── powerpoint-15.01.js │ │ │ │ ├── powerpoint-15.debug.js │ │ │ │ ├── powerpoint-15.js │ │ │ │ ├── powerpoint-web-16.00.debug.js │ │ │ │ ├── powerpoint-web-16.00.js │ │ │ │ ├── powerpoint-win32-16.00.debug.js │ │ │ │ ├── powerpoint-win32-16.00.js │ │ │ │ ├── project-15.01.debug.js │ │ │ │ ├── project-15.01.js │ │ │ │ ├── project-15.debug.js │ │ │ │ ├── project-15.js │ │ │ │ ├── project-win32-16.00.debug.js │ │ │ │ ├── project-win32-16.00.js │ │ │ │ ├── pt-br │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── pt-pt │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ro-ro │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── ru-ru │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sk-sk │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sl-si │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sr-latn-cs │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── sv-se │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── th-th │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── tr-tr │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── uk-ua │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── vi-vn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ ├── word-15.01.debug.js │ │ │ │ ├── word-15.01.js │ │ │ │ ├── word-15.debug.js │ │ │ │ ├── word-15.js │ │ │ │ ├── word-win32-16.00.debug.js │ │ │ │ ├── word-win32-16.00.js │ │ │ │ ├── zh-cn │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ │ └── zh-tw │ │ │ │ │ ├── office_strings.debug.js │ │ │ │ │ ├── office_strings.js │ │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ │ └── outlook_strings.js │ │ │ ├── MicrosoftAjax.js │ │ │ ├── Themes │ │ │ │ └── OfficeThemes.css │ │ │ └── metadata │ │ │ │ ├── endpoints.xml │ │ │ │ └── features.xml │ │ ├── PPE │ │ │ ├── Office.Controls.Login.js │ │ │ └── Office.Controls.People.js │ │ ├── _officeintellisense.js │ │ ├── _references.js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── jquery-2.1.1.intellisense.js │ │ ├── jquery-2.1.1.js │ │ ├── jquery-2.1.1.min.js │ │ ├── jquery-2.1.1.min.map │ │ ├── jquery-ui-1.11.2.js │ │ ├── jquery-ui-1.11.2.min.js │ │ ├── jquery.fabric.js │ │ ├── jquery.fabric.min.js │ │ ├── jquery.signalR-2.1.2.js │ │ ├── jquery.signalR-2.1.2.min.js │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ ├── jquery.validate.min.js │ │ ├── jquery.validate.unobtrusive.js │ │ ├── jquery.validate.unobtrusive.min.js │ │ ├── modernizr-2.8.3.js │ │ ├── respond.js │ │ ├── respond.matchmedia.addListener.js │ │ ├── respond.matchmedia.addListener.min.js │ │ └── respond.min.js │ ├── Service References │ │ └── Office365 │ │ │ └── ConnectedService.json │ ├── Services │ │ ├── ExcelService.cs │ │ ├── OneNoteService.cs │ │ ├── PlanService.cs │ │ ├── TasksService.cs │ │ └── WorkflowProvisionService.cs │ ├── Startup.cs │ ├── Templates │ │ ├── IncidentOneNotePage.cshtml │ │ └── Web.config │ ├── Utils │ │ ├── AADAppSettings.cs │ │ ├── AppSettings.cs │ │ ├── AuthenticationHelper.cs │ │ ├── CSOMUtil.cs │ │ ├── GraphServiceExtension.cs │ │ ├── HandleAdalExceptionAttribute.cs │ │ ├── NaiveSessionCache.cs │ │ ├── PagedCollectionExtensions.cs │ │ ├── RestHelper.cs │ │ ├── SiteProvisioning.cs │ │ ├── VideoPortalHelper.cs │ │ └── WorkflowUtil.cs │ ├── Views │ │ ├── Dashboard │ │ │ ├── Index.cshtml │ │ │ ├── Inspection.cshtml │ │ │ ├── InspectionDetails.cshtml │ │ │ ├── Property.cshtml │ │ │ ├── RepairApproved.cshtml │ │ │ ├── RepairComplete.cshtml │ │ │ ├── RepairInProgress.cshtml │ │ │ └── ScheduleRepair.cshtml │ │ ├── Home │ │ │ ├── IconAttribution.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Walkthrough.cshtml │ │ ├── MailAFO │ │ │ ├── Index.cshtml │ │ │ └── Redir.cshtml │ │ ├── O365SiteProvisioning │ │ │ ├── Index.cshtml │ │ │ └── ProvisionDemoData.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _DemoLayout.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _MailAFOLayout.cshtml │ │ ├── Web.config │ │ ├── WebHooks │ │ │ ├── Index.cshtml │ │ │ ├── Notification.cshtml │ │ │ └── Subscription.cshtml │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── Workflows │ │ └── Incident.xaml │ ├── components │ │ ├── Breadcrumb │ │ │ ├── Breadcrumb.html │ │ │ ├── Breadcrumb.json │ │ │ └── Breadcrumb.less │ │ ├── Button │ │ │ ├── Button.Command.html │ │ │ ├── Button.Compound.html │ │ │ ├── Button.Hero.html │ │ │ ├── Button.Primary.html │ │ │ ├── Button.html │ │ │ ├── Button.json │ │ │ └── Button.less │ │ ├── Callout │ │ │ ├── Callout.ActionText.html │ │ │ ├── Callout.Close.html │ │ │ ├── Callout.Oobe.html │ │ │ ├── Callout.Peek.html │ │ │ ├── Callout.html │ │ │ ├── Callout.json │ │ │ └── Callout.less │ │ ├── ChoiceField │ │ │ ├── ChoiceField.Checkbox.Disabled.html │ │ │ ├── ChoiceField.Checkbox.Selected.html │ │ │ ├── ChoiceField.Checkbox.html │ │ │ ├── ChoiceField.ChoiceFieldGroup.html │ │ │ ├── ChoiceField.Disabled.html │ │ │ ├── ChoiceField.Selected.html │ │ │ ├── ChoiceField.html │ │ │ ├── ChoiceField.json │ │ │ └── ChoiceField.less │ │ ├── CommandBar │ │ │ ├── CommandBar.html │ │ │ ├── CommandBar.json │ │ │ ├── CommandBar.less │ │ │ └── Jquery.CommandBar.js │ │ ├── ContextualMenu │ │ │ ├── ContextualMenu.Dividers.html │ │ │ ├── ContextualMenu.Multiselect.html │ │ │ ├── ContextualMenu.SubMenu.html │ │ │ ├── ContextualMenu.html │ │ │ ├── ContextualMenu.json │ │ │ ├── ContextualMenu.less │ │ │ └── Jquery.ContextualMenu.js │ │ ├── DatePicker │ │ │ ├── DatePicker.html │ │ │ ├── DatePicker.json │ │ │ ├── DatePicker.less │ │ │ ├── Jquery.DatePicker.js │ │ │ └── PickaDate.js │ │ ├── Dialog │ │ │ ├── Dialog.Close.html │ │ │ ├── Dialog.LgHeader.html │ │ │ ├── Dialog.Multiline.html │ │ │ ├── Dialog.html │ │ │ ├── Dialog.json │ │ │ └── Dialog.less │ │ ├── Dropdown │ │ │ ├── Dropdown.Disabled.html │ │ │ ├── Dropdown.html │ │ │ ├── Dropdown.json │ │ │ ├── Dropdown.less │ │ │ └── Jquery.Dropdown.js │ │ ├── Label │ │ │ ├── Label.Disabled.html │ │ │ ├── Label.Required.html │ │ │ ├── Label.html │ │ │ ├── Label.json │ │ │ └── Label.less │ │ ├── Link │ │ │ ├── Link.Hero.html │ │ │ ├── Link.html │ │ │ ├── Link.json │ │ │ └── Link.less │ │ ├── List │ │ │ ├── List.Grid.html │ │ │ ├── List.html │ │ │ ├── List.json │ │ │ └── List.less │ │ ├── ListItem │ │ │ ├── Jquery.ListItem.js │ │ │ ├── ListItem.Document.html │ │ │ ├── ListItem.Image.html │ │ │ ├── ListItem.Selectable.html │ │ │ ├── ListItem.Selected.html │ │ │ ├── ListItem.Unread.html │ │ │ ├── ListItem.Unseen.html │ │ │ ├── ListItem.html │ │ │ ├── ListItem.json │ │ │ └── ListItem.less │ │ ├── NavBar │ │ │ ├── Jquery.NavBar.js │ │ │ ├── NavBar.html │ │ │ ├── NavBar.json │ │ │ └── NavBar.less │ │ ├── OrgChart │ │ │ ├── OrgChart.Square.html │ │ │ ├── OrgChart.html │ │ │ ├── OrgChart.json │ │ │ └── OrgChart.less │ │ ├── Overlay │ │ │ ├── Overlay.Dark.html │ │ │ ├── Overlay.None.html │ │ │ ├── Overlay.html │ │ │ ├── Overlay.json │ │ │ └── Overlay.less │ │ ├── Panel │ │ │ ├── Jquery.Panel.js │ │ │ ├── Panel.ExtraLarge.html │ │ │ ├── Panel.Large.html │ │ │ ├── Panel.Medium.html │ │ │ ├── Panel.html │ │ │ ├── Panel.json │ │ │ └── Panel.less │ │ ├── PeoplePicker │ │ │ ├── Jquery.PeoplePicker.js │ │ │ ├── PeoplePicker.Compact.html │ │ │ ├── PeoplePicker.Disconnected.html │ │ │ ├── PeoplePicker.FacePile.html │ │ │ ├── PeoplePicker.Searching.png │ │ │ ├── PeoplePicker.html │ │ │ ├── PeoplePicker.json │ │ │ └── PeoplePicker.less │ │ ├── Persona │ │ │ ├── Persona.ExtraLarge.html │ │ │ ├── Persona.ExtraSmall.html │ │ │ ├── Persona.Large.html │ │ │ ├── Persona.Person.jpg │ │ │ ├── Persona.Person2.png │ │ │ ├── Persona.Presence.Available.html │ │ │ ├── Persona.Presence.Away.html │ │ │ ├── Persona.Presence.Blocked.html │ │ │ ├── Persona.Presence.Busy.html │ │ │ ├── Persona.Presence.Dnd.html │ │ │ ├── Persona.Presence.Offline.html │ │ │ ├── Persona.Presence.Square.Available.html │ │ │ ├── Persona.Presence.Square.Away.html │ │ │ ├── Persona.Presence.Square.Blocked.html │ │ │ ├── Persona.Presence.Square.Busy.html │ │ │ ├── Persona.Presence.Square.Dnd.html │ │ │ ├── Persona.Presence.Square.Offline.html │ │ │ ├── Persona.Small.html │ │ │ ├── Persona.Square.ExtraLarge.html │ │ │ ├── Persona.Square.ExtraSmall.html │ │ │ ├── Persona.Square.Large.html │ │ │ ├── Persona.Square.Small.html │ │ │ ├── Persona.Square.Tiny.html │ │ │ ├── Persona.Square.html │ │ │ ├── Persona.Tiny.html │ │ │ ├── Persona.html │ │ │ ├── Persona.json │ │ │ └── Persona.less │ │ ├── PersonaCard │ │ │ ├── Jquery.PersonaCard.js │ │ │ ├── PersonaCard.Square.html │ │ │ ├── PersonaCard.html │ │ │ ├── PersonaCard.json │ │ │ ├── PersonaCard.less │ │ │ └── PersonaCard.scss │ │ ├── Pivot │ │ │ ├── Pivot.Large.html │ │ │ ├── Pivot.Tabs.Large.html │ │ │ ├── Pivot.Tabs.html │ │ │ ├── Pivot.html │ │ │ ├── Pivot.json │ │ │ ├── Pivot.less │ │ │ └── jquery.Pivot.js │ │ ├── ProgressIndicator │ │ │ ├── ProgressIndicator.html │ │ │ ├── ProgressIndicator.js │ │ │ ├── ProgressIndicator.json │ │ │ └── ProgressIndicator.less │ │ ├── SearchBox │ │ │ ├── Jquery.SearchBox.js │ │ │ ├── SearchBox.html │ │ │ ├── SearchBox.json │ │ │ └── SearchBox.less │ │ ├── Spinner │ │ │ ├── Spinner.html │ │ │ ├── Spinner.js │ │ │ ├── Spinner.json │ │ │ └── Spinner.less │ │ ├── Table │ │ │ ├── Table.html │ │ │ ├── Table.json │ │ │ └── Table.less │ │ ├── TextField │ │ │ ├── Jquery.TextField.js │ │ │ ├── TextField.Multiline.html │ │ │ ├── TextField.Placeholder.html │ │ │ ├── TextField.Underlined.html │ │ │ ├── TextField.html │ │ │ ├── TextField.json │ │ │ └── TextField.less │ │ └── Toggle │ │ │ ├── Toggle.TextLeft.html │ │ │ ├── Toggle.html │ │ │ ├── Toggle.json │ │ │ └── Toggle.less │ ├── css │ │ ├── fabric.components.css │ │ ├── fabric.components.min.css │ │ ├── fabric.components.rtl.css │ │ ├── fabric.components.rtl.min.css │ │ ├── fabric.css │ │ ├── fabric.min.css │ │ ├── fabric.rtl.css │ │ └── fabric.rtl.min.css │ ├── favicon.ico │ ├── less │ │ ├── Fabric.Components.less │ │ ├── Fabric.RTL.less │ │ ├── Fabric.less │ │ ├── _Fabric.Animations.RTL.less │ │ ├── _Fabric.Animations.less │ │ ├── _Fabric.Color.Mixins.less │ │ ├── _Fabric.Color.Variables.less │ │ ├── _Fabric.Grid.less │ │ ├── _Fabric.Icons.Font.less │ │ ├── _Fabric.Icons.RTL.less │ │ ├── _Fabric.Icons.less │ │ ├── _Fabric.Mixins.less │ │ ├── _Fabric.Responsive.Utilities.less │ │ ├── _Fabric.Responsive.Variables.less │ │ ├── _Fabric.Typography.Fonts.less │ │ ├── _Fabric.Typography.Languageoverrides.less │ │ ├── _Fabric.Typography.Variables.less │ │ ├── _Fabric.Typography.less │ │ ├── _Fabric.Utilities.less │ │ ├── _Fabric.ZIndex.Variables.less │ │ ├── _Office.Color.Mixins.less │ │ └── _Office.Color.Variables.less │ ├── packages.config │ └── sass │ │ ├── Fabric.Animations.Output.scss │ │ ├── Fabric.Animations.RTL.Output.scss │ │ ├── Fabric.Color.Mixins.Output.scss │ │ ├── Fabric.Components.scss │ │ ├── Fabric.Grid.Output.scss │ │ ├── Fabric.Icons.Font.Output.scss │ │ ├── Fabric.Icons.Output.scss │ │ ├── Fabric.Icons.RTL.Output.scss │ │ ├── Fabric.RTL.scss │ │ ├── Fabric.Responsive.Utilities.Output.scss │ │ ├── Fabric.Typography.Fonts.Output.scss │ │ ├── Fabric.Typography.Language.Overrides.Output.scss │ │ ├── Fabric.Typography.Output.scss │ │ ├── Fabric.Utilities.Output.scss │ │ ├── Fabric.scss │ │ ├── _Fabric.Animations.RTL.scss │ │ ├── _Fabric.Animations.scss │ │ ├── _Fabric.Color.Mixins.scss │ │ ├── _Fabric.Color.Variables.scss │ │ ├── _Fabric.Common.scss │ │ ├── _Fabric.Grid.scss │ │ ├── _Fabric.Icons.scss │ │ ├── _Fabric.Mixins.scss │ │ ├── _Fabric.Responsive.Utilities.Variables.scss │ │ ├── _Fabric.Responsive.Variables.scss │ │ ├── _Fabric.Typography.Fonts.scss │ │ ├── _Fabric.Typography.Language.Overrides.scss │ │ ├── _Fabric.Typography.Variables.scss │ │ ├── _Fabric.Typography.scss │ │ ├── _Fabric.Utilities.scss │ │ ├── _Fabric.ZIndex.Variables.scss │ │ └── _Office.Color.Variables.scss └── README.md ├── README-RepairAppAAD.md ├── README-Training.md ├── README.md ├── XamarinRepairApp ├── README-Xamarin.md ├── XamarinRepairApp.sln └── XamarinRepairApp │ ├── App.cs │ ├── Assets │ └── AboutAssets.txt │ ├── Constants.cs │ ├── IncidentActivity.cs │ ├── IncidentDetailActivity.cs │ ├── MainActivity.cs │ ├── Model │ ├── IncidentModel.cs │ ├── InspectionModel.cs │ ├── PropertyModel.cs │ ├── RoomModel.cs │ └── TaskModel.cs │ ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs │ ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable │ │ ├── Icon.png │ │ ├── Thumbs.db │ │ ├── at.png │ │ ├── back.png │ │ ├── button_corner.xml │ │ ├── camera.png │ │ ├── close.png │ │ ├── date.png │ │ ├── default_logo.png │ │ ├── done_button_corner.xml │ │ ├── house.png │ │ ├── ic_repair.png │ │ ├── logo.png │ │ ├── logo_incidents.png │ │ ├── person.png │ │ ├── property_logo.png │ │ └── tab.png │ ├── layout │ │ ├── Incident.axml │ │ ├── IncidentDetail.axml │ │ ├── Incident_item.axml │ │ └── Main.axml │ └── values │ │ ├── Colors.xml │ │ ├── Strings.xml │ │ └── Styles.xml │ ├── Utils │ ├── AuthenticationHelper.cs │ ├── Helper.cs │ ├── IncidentAdapter.cs │ ├── ListClient.cs │ ├── ListHelper.cs │ └── ListItem.cs │ ├── XamarinRepairApp.csproj │ ├── app.config │ └── packages.config ├── iOSInspectionApp ├── Podfile ├── README-iOS.md ├── iOSInspectionApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── EdKeyNote.xccheckout └── iOSInspectionApp │ ├── ADALiOSBundle │ ├── ADAL_iPad_Storyboard.storyboard │ ├── ADAL_iPhone_Storyboard.storyboard │ ├── ADALiOSBundle-Info.plist │ ├── ADALiOSBundle-Prefix.pch │ └── en.lproj │ │ └── InfoPlist.strings │ ├── CertificateSigningRequest.certSigningRequest │ ├── CommentCollectionViewCell.h │ ├── CommentCollectionViewCell.m │ ├── CommentCollectionViewCell.xib │ ├── ContactOwnerCell.h │ ├── ContactOwnerCell.m │ ├── ContactOwnerCell.xib │ ├── EKN+NavigationController.h │ ├── EKN+NavigationController.m │ ├── EKN+UIImagePickerController.h │ ├── EKN+UIImagePickerController.m │ ├── EKN+UIViewController.h │ ├── EKN+UIViewController.m │ ├── EKNAppDelegate.h │ ├── EKNAppDelegate.m │ ├── EKNCollectionViewCell.h │ ├── EKNCollectionViewCell.m │ ├── EKNCollectionViewCell.xib │ ├── EKNEKNGlobalInfo.h │ ├── EKNEKNGlobalInfo.m │ ├── EKNGraph.h │ ├── EKNGraph.m │ ├── EKNListClient.h │ ├── EKNListClient.m │ ├── EKNListItem.h │ ├── EKNListItem.m │ ├── EKNLoginViewController.h │ ├── EKNLoginViewController.m │ ├── EKNMetadata.h │ ├── EKNMetadata.m │ ├── EKNPropertyDetailsViewController.h │ ├── EKNPropertyDetailsViewController.m │ ├── EKNVideoService.h │ ├── EKNVideoService.m │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon.png │ │ └── icon@2x.png │ └── LaunchImage.launchimage │ │ └── Contents.json │ ├── Images │ ├── LeakyFaucet.mp4 │ ├── before@2x~ipad.png │ ├── before~ipad.png │ ├── black@2x~ipad.png │ ├── black~ipad.png │ ├── camera@2x~ipad.png │ ├── camera~ipad.png │ ├── detailsepartorline.png │ ├── dropdown_arrow@2x~ipad.png │ ├── dropdown_arrow~ipad.png │ ├── email@2x~ipad.png │ ├── email~ipad.png │ ├── finalize@2x~ipad.png │ ├── finalize~ipad.png │ ├── green@2x~ipad.png │ ├── greenRoom@2x~ipad.png │ ├── greenRoom~ipad.png │ ├── green~ipad.png │ ├── home@2x~ipad.png │ ├── home~ipad.png │ ├── man@2x~ipad.png │ ├── man~ipad.png │ ├── navigation_background@2x~ipad.png │ ├── navigation_background~ipad.png │ ├── plus@2x~ipad.png │ ├── plus~ipad.png │ ├── red@2x~ipad.png │ ├── redRoom@2x~ipad.png │ ├── redRoom~ipad.png │ ├── red~ipad.png │ ├── seg2@2x~ipad.png │ ├── seg2~ipad.png │ ├── seg@2x~ipad.png │ ├── seg~ipad.png │ ├── selected@2x~ipad.png │ ├── selected~ipad.png │ ├── sepratorline@2x~ipad.png │ ├── sepratorline~ipad.png │ ├── setting@2x~ipad.png │ └── setting~ipad.png │ ├── InspectionListCell.h │ ├── InspectionListCell.m │ ├── InspectionListCell.xib │ ├── NSString+NSStringExtensions.h │ ├── NSString+NSStringExtensions.m │ ├── PropertyDetailsCell.h │ ├── PropertyDetailsCell.m │ ├── PropertyDetailsCell.xib │ ├── PropertyDetailsImage.h │ ├── PropertyDetailsImage.m │ ├── PropertyDetailsImage.xib │ ├── PropertyListCell.h │ ├── PropertyListCell.m │ ├── PropertyListCell.xib │ ├── RoomListCell.h │ ├── RoomListCell.m │ ├── RoomListCell.xib │ ├── SPVideoChannel.h │ ├── SPVideoChannel.m │ ├── SPVideoItem.h │ ├── SPVideoItem.m │ ├── SPVideoItemOperations.h │ ├── SPVideoItemOperations.m │ ├── Settings.bundle │ ├── Root.plist │ └── en.lproj │ │ └── Root.strings │ ├── en.lproj │ └── InfoPlist.strings │ ├── iOSInspectionApp-Info.plist │ ├── iOSInspectionApp-Prefix.pch │ ├── iOSInspectionApp.entitlements │ └── main.m └── iOSRepairApp ├── Podfile ├── README-iOS.md ├── iOSRepairApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── iOSRepairApp ├── ADALiOSBundle ├── ADAL_iPad_Storyboard.storyboard ├── ADAL_iPhone_Storyboard.storyboard ├── ADALiOSBundle-Info.plist ├── ADALiOSBundle-Prefix.pch └── en.lproj │ └── InfoPlist.strings ├── BaseController.h ├── BaseController.m ├── CertificateSigningRequest.certSigningRequest ├── ContactOwnerCell.h ├── ContactOwnerCell.m ├── ContactOwnerCell.xib ├── ConversationCell.h ├── ConversationCell.m ├── ConversationCell.xib ├── EKN+NavigationController.h ├── EKN+NavigationController.m ├── EKN+UIImagePickerController.h ├── EKN+UIImagePickerController.m ├── EKN+UIViewController.h ├── EKN+UIViewController.m ├── EKNAppDelegate.h ├── EKNAppDelegate.m ├── EKNCollectionViewCell.h ├── EKNCollectionViewCell.m ├── EKNCollectionViewCell.xib ├── EKNEKNGlobalInfo.h ├── EKNEKNGlobalInfo.m ├── EKNGraphService.h ├── EKNGraphService.m ├── EKNIncidentDetailView.h ├── EKNIncidentDetailView.m ├── EKNIncidentViewController.h ├── EKNIncidentViewController.m ├── EKNListClient.h ├── EKNListClient.m ├── EKNListItem.h ├── EKNListItem.m ├── EKNLoginViewController.h ├── EKNLoginViewController.m ├── EKNMetadata.h ├── EKNMetadata.m ├── EKNOneNoteService.h ├── EKNOneNoteService.m ├── EKNPPcommonTableView.h ├── EKNPPcommonTableView.m ├── EKNPlanService.h ├── EKNPlanService.m ├── EKNVideoService.h ├── EKNVideoService.m ├── Images.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── icon@2x~ipad.png │ └── icon~ipad.png └── LaunchImage.launchimage │ └── Contents.json ├── Images ├── before@2x~ipad.png ├── before~ipad.png ├── calendar@2x~ipad.png ├── calendar~ipad.png ├── camera@2x~ipad.png ├── camera_gray@2x~ipad.png ├── camera_gray~ipad.png ├── camera~ipad.png ├── close@2x~ipad.png ├── close~ipad.png ├── default~ipad.png ├── detailsepartorline.png ├── email@2x~ipad.png ├── email~ipad.png ├── finalize_repair@2x~ipad.png ├── finalize_repair~ipad.png ├── home@2x~ipad.png ├── home~ipad.png ├── ico_excel@2x~ipad.png ├── ico_excel~ipad.png ├── ico_powerpoint@2x~ipad.png ├── ico_powerpoint~ipad.png ├── ico_word@2x~ipad.png ├── ico_word~ipad.png ├── icon@2x~ipad.png ├── icon~ipad.png ├── incident_detailtab@2x~ipad.png ├── incident_detailtab~ipad.png ├── left_nav1@2x~ipad.png ├── left_nav1~ipad.png ├── left_nav2@2x~ipad.png ├── left_nav2~ipad.png ├── left_nav3@2x~ipad.png ├── left_nav3~ipad.png ├── left_nav4@2x~ipad.png ├── left_nav4~ipad.png ├── left_nav5@2x~ipad.png ├── left_nav5~ipad.png ├── left_nav6@2x~ipad.png ├── left_nav6~ipad.png ├── left_nav7@2x~ipad.png ├── left_nav7~ipad.png ├── left_nav_selected1@2x~ipad.png ├── left_nav_selected1~ipad.png ├── left_nav_selected2@2x~ipad.png ├── left_nav_selected2~ipad.png ├── left_nav_selected3@2x~ipad.png ├── left_nav_selected3~ipad.png ├── left_nav_selected4@2x~ipad.png ├── left_nav_selected4~ipad.png ├── left_nav_selected5@2x~ipad.png ├── left_nav_selected5~ipad.png ├── left_nav_selected6@2x~ipad.png ├── left_nav_selected6~ipad.png ├── left_nav_selected7@2x~ipad.png ├── left_nav_selected7~ipad.png ├── man@2x~ipad.png ├── man~ipad.png ├── navigation_background@2x~ipad.png ├── navigation_background~ipad.png ├── oneNoteList@2x~ipad.png ├── oneNoteListSelect@2x~ipad.png ├── oneNoteListSelect~ipad.png ├── oneNoteList~ipad.png ├── open_onenote@2x~ipad.png ├── open_onenote~ipad.png ├── sepratorline@2x~ipad.png ├── sepratorline~ipad.png ├── setting@2x~ipad.png ├── setting~ipad.png ├── video@2x~ipad.png └── video~ipad.png ├── IncidentListItemCell.h ├── IncidentListItemCell.m ├── IncidentListItemCell.xib ├── IncidentMenuCell.h ├── IncidentMenuCell.m ├── IncidentMenuCell.xib ├── MSGraphConversation.h ├── MSGraphConversation.m ├── NSString+NSStringExtensions.h ├── NSString+NSStringExtensions.m ├── OneNoteCell.h ├── OneNoteCell.m ├── OneNoteCell.xib ├── PropertyDetailsCell.h ├── PropertyDetailsCell.m ├── PropertyDetailsCell.xib ├── PropertyDetailsImage.h ├── PropertyDetailsImage.m ├── PropertyDetailsImage.xib ├── PropertyFileCell.h ├── PropertyFileCell.m ├── PropertyFileCell.xib ├── PropertyMembersCell.h ├── PropertyMembersCell.m ├── PropertyMembersCell.xib ├── SPVideoChannel.h ├── SPVideoChannel.m ├── SPVideoItem.h ├── SPVideoItem.m ├── SPVideoItemOperations.h ├── SPVideoItemOperations.m ├── Settings.bundle ├── Root.plist └── en.lproj │ └── Root.strings ├── en.lproj └── InfoPlist.strings ├── iOSRepairApp-Info.plist ├── iOSRepairApp-Prefix.pch ├── iOSRepairApp.entitlements └── main.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidRepairApp/README-Android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/README-Android.md -------------------------------------------------------------------------------- /AndroidRepairApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/build.gradle -------------------------------------------------------------------------------- /AndroidRepairApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/java/com/canviz/repairapp/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/java/com/canviz/repairapp/App.java -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/java/com/canviz/repairapp/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/java/com/canviz/repairapp/Constants.java -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/java/com/canviz/repairapp/graph/Drive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/java/com/canviz/repairapp/graph/Drive.java -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-hdpi/ic_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-hdpi/ic_repair.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-mdpi/ic_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-mdpi/ic_repair.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/Thumbs.db -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/at.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/back.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/camera.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/close.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/date.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/default_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/default_logo.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/house.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/ic_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/ic_repair.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_excel.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_powerpoint.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/ico_word.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav1.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav2.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav3.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav4.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav5.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav6.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav7.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected1.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected2.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected3.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected4.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected5.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected6.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/left_nav_selected7.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon1.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon2.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon3.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus1.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus2.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/list_icon_focus3.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/logo_incidents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/logo_incidents.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/open_onenote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/open_onenote.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/person.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/property_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/property_logo.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/tab.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xhdpi/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xhdpi/video.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable-xxhdpi/ic_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable-xxhdpi/ic_repair.png -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/button_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/button_corner.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/conversation_img_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/conversation_img_selector.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/file_img_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/file_img_selector.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/list_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/list_selector.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/note_img_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/note_img_selector.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/drawable/text_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/drawable/text_selector.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/activity_incident.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/activity_incident.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/activity_incident_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/activity_incident_detail.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/activity_signin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/activity_signin.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/conversation_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/conversation_item.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/file_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/file_item.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/footview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/footview.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/incident_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/incident_item.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/member_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/member_item.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/layout/note_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/layout/note_item.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/menu/menu_incident.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/menu/menu_incident.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/menu/menu_incident_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/menu/menu_incident_detail.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/menu/menu_signin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/menu/menu_signin.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /AndroidRepairApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /AndroidRepairApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/build.gradle -------------------------------------------------------------------------------- /AndroidRepairApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradle.properties -------------------------------------------------------------------------------- /AndroidRepairApp/gradle/AndroidRepairApp - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradle/AndroidRepairApp - Shortcut.lnk -------------------------------------------------------------------------------- /AndroidRepairApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /AndroidRepairApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /AndroidRepairApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradlew -------------------------------------------------------------------------------- /AndroidRepairApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/AndroidRepairApp/gradlew.bat -------------------------------------------------------------------------------- /AndroidRepairApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp.sln -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/CordovaRepairApp.jsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/CordovaRepairApp.jsproj -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/Project_Readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/Project_Readme.html -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/config.xml -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/css/incidents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/css/incidents.css -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/addnew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/addnew.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/ajax-loader.gif -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/before.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/calendar.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/camera_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/camera_gray.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/close.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/default.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/dispatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/dispatcher.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/email.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/finalize_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/finalize_repair.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/home.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/incident_detailtab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/incident_detailtab.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/inspector.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/logout.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/man.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/images/navigation_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/images/navigation_background.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/incidents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/incidents.html -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/android/css/incidents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/android/css/incidents.css -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/android/images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/android/images/before.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/android/images/cpm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/android/images/cpm_logo.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/android/incidents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/android/incidents.html -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/css/incidents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/css/incidents.css -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/before.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/calendar.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/cpm_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/cpm_logo.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/email.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/home.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/images/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/images/man.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/incidents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/incidents.html -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/merges/windows/scripts/app/rpDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/merges/windows/scripts/app/rpDevice.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/packages.config -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-36-ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-36-ldpi.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-48-mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-48-mdpi.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-72-hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-72-hdpi.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-96-xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/android/icon-96-xhdpi.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-40-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-40-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-40.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-50-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-50-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-50.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-57-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-57-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-57.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-60-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-60-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-60.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-72-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-72-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-72.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-76-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-76-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-76.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-small-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-small-2x.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/ios/icon-small.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/windows/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/windows/logo.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/windows/smalllogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/windows/smalllogo.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/windows/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/windows/storelogo.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/wp8/icon-173-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/wp8/icon-173-tile.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/icons/wp8/icon-62-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/icons/wp8/icon-62-tile.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/native/android/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/native/android/ant.properties -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/screens/windows/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/screens/windows/splashscreen.png -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/res/screens/wp8/screen-portrait.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/res/screens/wp8/screen-portrait.jpg -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/incidentCtrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/incidentCtrl.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/incidents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/incidents.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/listClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/listClient.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/rpDevice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/rpDevice.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/rpUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/rpUtil.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/app/viewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/app/viewModel.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.intellisense.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/knockout-3.2.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/knockout-3.2.0.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/scripts/platformOverrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/scripts/platformOverrides.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/redirectTarget.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/redirectTarget.html -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/scripts/aadgraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/scripts/aadgraph.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/scripts/exchange.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/scripts/exchange.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/scripts/o365auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/scripts/o365auth.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/scripts/utility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/scripts/utility.js -------------------------------------------------------------------------------- /CordovaRepairApp/CordovaRepairApp/services/office365/settings/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/CordovaRepairApp/services/office365/settings/settings.js -------------------------------------------------------------------------------- /CordovaRepairApp/README-Cordova.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/CordovaRepairApp/README-Cordova.md -------------------------------------------------------------------------------- /Documents/AVD Nexus 9 Advanced Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/AVD Nexus 9 Advanced Settings.png -------------------------------------------------------------------------------- /Documents/AVD System Image Lollipop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/AVD System Image Lollipop.png -------------------------------------------------------------------------------- /Documents/AVD Tablet Nexus 9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/AVD Tablet Nexus 9.png -------------------------------------------------------------------------------- /Documents/Cordova - Android Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Cordova - Android Simulator.png -------------------------------------------------------------------------------- /Documents/Cordova - Windows Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Cordova - Windows Simulator.png -------------------------------------------------------------------------------- /Documents/Cordova - iOS Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Cordova - iOS Simulator.png -------------------------------------------------------------------------------- /Documents/Create AVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Create AVD.png -------------------------------------------------------------------------------- /Documents/Demo Script.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Demo Script.pptx -------------------------------------------------------------------------------- /Documents/Demo Walk Through Video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Demo Walk Through Video.png -------------------------------------------------------------------------------- /Documents/Enable Keychain Sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Enable Keychain Sharing.png -------------------------------------------------------------------------------- /Documents/Install OneNote In Android Emulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Install OneNote In Android Emulator.png -------------------------------------------------------------------------------- /Documents/Mail AFO - Admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Mail AFO - Admin.png -------------------------------------------------------------------------------- /Documents/Mail AFO - Incident Details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Mail AFO - Incident Details.png -------------------------------------------------------------------------------- /Documents/Mail AFO - Link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Mail AFO - Link.png -------------------------------------------------------------------------------- /Documents/Mail AFO - Redir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Mail AFO - Redir.png -------------------------------------------------------------------------------- /Documents/Nexus 9 AVD Settings - 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Nexus 9 AVD Settings - 2.png -------------------------------------------------------------------------------- /Documents/Nexus 9 AVD Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Nexus 9 AVD Settings.png -------------------------------------------------------------------------------- /Documents/O365 API AD Permissions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API AD Permissions-2.png -------------------------------------------------------------------------------- /Documents/O365 API AD Permissions-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API AD Permissions-3.png -------------------------------------------------------------------------------- /Documents/O365 API AD Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API AD Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 API Calendar Permissions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Calendar Permissions-2.png -------------------------------------------------------------------------------- /Documents/O365 API Calendar Permissions-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Calendar Permissions-3.png -------------------------------------------------------------------------------- /Documents/O365 API Calendar Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Calendar Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 API Mail Permissions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Mail Permissions-2.png -------------------------------------------------------------------------------- /Documents/O365 API Mail Permissions-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Mail Permissions-3.png -------------------------------------------------------------------------------- /Documents/O365 API Mail Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Mail Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 API Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 API Sites Permissions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Sites Permissions-2.png -------------------------------------------------------------------------------- /Documents/O365 API Sites Permissions-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Sites Permissions-3.png -------------------------------------------------------------------------------- /Documents/O365 API Sites Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 API Sites Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 App Settings-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 App Settings-2.png -------------------------------------------------------------------------------- /Documents/O365 App Settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 App Settings.jpg -------------------------------------------------------------------------------- /Documents/O365 OneNote AAD App Permissions 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 OneNote AAD App Permissions 2.jpg -------------------------------------------------------------------------------- /Documents/O365 SP AAD App Permissions 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 SP AAD App Permissions 2.jpg -------------------------------------------------------------------------------- /Documents/O365 SP AAD App Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 SP AAD App Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 Unified API AAD Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 Unified API AAD Permissions.jpg -------------------------------------------------------------------------------- /Documents/O365 Unified API AD Permissions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/O365 Unified API AD Permissions.jpg -------------------------------------------------------------------------------- /Documents/OneNote.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/OneNote.apk -------------------------------------------------------------------------------- /Documents/READMEtest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/READMEtest.md -------------------------------------------------------------------------------- /Documents/Select Nexus 9 AVD - 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Select Nexus 9 AVD - 2.png -------------------------------------------------------------------------------- /Documents/Select Nexus 9 AVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Select Nexus 9 AVD.png -------------------------------------------------------------------------------- /Documents/Starting Nexus 9 AVD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Starting Nexus 9 AVD.png -------------------------------------------------------------------------------- /Documents/Webhook Listen Notification1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Webhook Listen Notification1.png -------------------------------------------------------------------------------- /Documents/Webhook Listen Notification2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Webhook Listen Notification2.png -------------------------------------------------------------------------------- /Documents/Xamarin Nexus 9 Simulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/Xamarin Nexus 9 Simulator.png -------------------------------------------------------------------------------- /Documents/android constants file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/android constants file.png -------------------------------------------------------------------------------- /Documents/contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/contacts.png -------------------------------------------------------------------------------- /Documents/content provision success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/content provision success.jpg -------------------------------------------------------------------------------- /Documents/dashboard 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/dashboard 2.jpg -------------------------------------------------------------------------------- /Documents/dashboard 3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/dashboard 3.jpg -------------------------------------------------------------------------------- /Documents/dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/dashboard.jpg -------------------------------------------------------------------------------- /Documents/demo data provision success-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/demo data provision success-2.png -------------------------------------------------------------------------------- /Documents/demo data provision success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/demo data provision success.jpg -------------------------------------------------------------------------------- /Documents/demo_video_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/demo_video_thumb.png -------------------------------------------------------------------------------- /Documents/grant consent.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/grant consent.jpg -------------------------------------------------------------------------------- /Documents/home-controller.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/home-controller.jpg -------------------------------------------------------------------------------- /Documents/iOS App AAD Perms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/iOS App AAD Perms.png -------------------------------------------------------------------------------- /Documents/iOS App Exchange Perms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/iOS App Exchange Perms.png -------------------------------------------------------------------------------- /Documents/iOS App SP Perms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/iOS App SP Perms.png -------------------------------------------------------------------------------- /Documents/inspection pod install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/inspection pod install.png -------------------------------------------------------------------------------- /Documents/integrating-web-apps-with-office-365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/integrating-web-apps-with-office-365.png -------------------------------------------------------------------------------- /Documents/ios-cordova-android-apps-with-office-365.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/ios-cordova-android-apps-with-office-365.png -------------------------------------------------------------------------------- /Documents/licenses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/licenses.jpg -------------------------------------------------------------------------------- /Documents/office_dev_matters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/office_dev_matters.png -------------------------------------------------------------------------------- /Documents/people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/people.png -------------------------------------------------------------------------------- /Documents/pod install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/pod install.png -------------------------------------------------------------------------------- /Documents/repair pod install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/repair pod install.png -------------------------------------------------------------------------------- /Documents/sc provision success-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/sc provision success-2.png -------------------------------------------------------------------------------- /Documents/sc provision success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/sc provision success.jpg -------------------------------------------------------------------------------- /Documents/streaming-video-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/streaming-video-service.png -------------------------------------------------------------------------------- /Documents/workflow provision success.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/Documents/workflow provision success.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/LICENSE -------------------------------------------------------------------------------- /MailAFO/MailAFO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/MailAFO.sln -------------------------------------------------------------------------------- /MailAFO/MailAFO/MailAFO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/MailAFO/MailAFO.csproj -------------------------------------------------------------------------------- /MailAFO/MailAFO/MailAFOManifest/MailAFO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/MailAFO/MailAFOManifest/MailAFO.xml -------------------------------------------------------------------------------- /MailAFO/MailAFO/MailAFOManifest/MailApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/MailAFO/MailAFOManifest/MailApp.xml -------------------------------------------------------------------------------- /MailAFO/MailAFO/MailAFOManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/MailAFO/MailAFOManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /MailAFO/README-Mail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/MailAFO/README-Mail.md -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp.sln -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/App_Data/Notifications.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/App_Data/Notifications.xml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/App_Start/Startup.Auth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/App_Start/Startup.Auth.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Fonts/Segoe-UI/demo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Fonts/Segoe-UI/demo.htm -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/btn-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/btn-icon-1.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/btn-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/btn-icon-2.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/contoso-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/contoso-logo.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/gray-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/gray-bg.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-add.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-at.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-battery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-battery.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-calendar.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-home.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-owner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-owner.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-plus.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-rooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-rooms.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-stove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-stove.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/ico-wifi.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/incident.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/incident.jpg -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/loading.gif -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/orange-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Images/orange-bg.png -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Office.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/SampleData.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/SampleData.xml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/Site.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.css.map -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/contoso.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/contoso.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/iconAttribution.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/iconAttribution.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/mailAFO.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/mailAFO.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Content/themes/base/core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Content/themes/base/core.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Global.asax -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Global.asax.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/AuditRepairModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/AuditRepairModel.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/CalendarEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/CalendarEvent.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/Dashboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/Dashboard.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/MailAFOModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/MailAFOModel.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/ProvisionDemoData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/ProvisionDemoData.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/UploadFileModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/UploadFileModel.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Models/WebHooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Models/WebHooks.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/PropertyManagerMyApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/PropertyManagerMyApp.csproj -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/Office/1.1/office.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/Office/1.1/office.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/_references.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-2.1.1.min.map -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-ui-1.11.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery-ui-1.11.2.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.fabric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.fabric.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.fabric.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.fabric.min.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/modernizr-2.8.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/modernizr-2.8.3.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/respond.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Services/ExcelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Services/ExcelService.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Services/OneNoteService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Services/OneNoteService.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Services/PlanService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Services/PlanService.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Services/TasksService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Services/TasksService.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Startup.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Templates/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Templates/Web.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/AADAppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/AADAppSettings.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/AppSettings.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/CSOMUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/CSOMUtil.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/NaiveSessionCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/NaiveSessionCache.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/RestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/RestHelper.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/SiteProvisioning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/SiteProvisioning.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/VideoPortalHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/VideoPortalHelper.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Utils/WorkflowUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Utils/WorkflowUtil.cs -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/Dashboard/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/Dashboard/Index.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/MailAFO/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/MailAFO/Index.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/MailAFO/Redir.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/MailAFO/Redir.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/Web.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/WebHooks/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/WebHooks/Index.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Web.Debug.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Web.Release.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Web.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/Workflows/Incident.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/Workflows/Incident.xaml -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Label/Label.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Link/Link.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/List/List.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Panel/Panel.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Pivot/Pivot.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.html -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.json -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/components/Table/Table.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.components.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.min.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.rtl.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/css/fabric.rtl.min.css -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/favicon.ico -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.Components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.Components.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.RTL.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.RTL.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/Fabric.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Animations.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Grid.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.Font.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.Font.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.RTL.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.RTL.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Icons.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Mixins.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Typography.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/less/_Fabric.Utilities.less -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/packages.config -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.Components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.Components.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.Grid.Output.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.Grid.Output.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.RTL.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.RTL.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/Fabric.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Animations.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Common.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Grid.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Icons.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Mixins.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Typography.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/PropertyManagerMyApp/sass/_Fabric.Utilities.scss -------------------------------------------------------------------------------- /PropertyManagerMyApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/PropertyManagerMyApp/README.md -------------------------------------------------------------------------------- /README-RepairAppAAD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/README-RepairAppAAD.md -------------------------------------------------------------------------------- /README-Training.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/README-Training.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/README.md -------------------------------------------------------------------------------- /XamarinRepairApp/README-Xamarin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/README-Xamarin.md -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp.sln -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/App.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Constants.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/IncidentActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/IncidentActivity.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/IncidentDetailActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/IncidentDetailActivity.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/MainActivity.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Model/IncidentModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Model/IncidentModel.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Model/InspectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Model/InspectionModel.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Model/PropertyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Model/PropertyModel.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Model/RoomModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Model/RoomModel.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Model/TaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Model/TaskModel.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/AboutResources.txt -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/Thumbs.db -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/at.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/at.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/back.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/button_corner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/button_corner.xml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/camera.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/close.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/date.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/default_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/default_logo.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/house.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/house.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/ic_repair.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/ic_repair.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/logo.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/person.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/property_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/property_logo.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/drawable/tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/drawable/tab.png -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/layout/Incident.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/layout/Incident.axml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/layout/IncidentDetail.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/layout/IncidentDetail.axml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/layout/Incident_item.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/layout/Incident_item.axml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/layout/Main.axml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/values/Colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/values/Colors.xml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/values/Strings.xml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Resources/values/Styles.xml -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/AuthenticationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/AuthenticationHelper.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/Helper.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/IncidentAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/IncidentAdapter.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/ListClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/ListClient.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/ListHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/ListHelper.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/Utils/ListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/Utils/ListItem.cs -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/XamarinRepairApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/XamarinRepairApp.csproj -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/app.config -------------------------------------------------------------------------------- /XamarinRepairApp/XamarinRepairApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/XamarinRepairApp/XamarinRepairApp/packages.config -------------------------------------------------------------------------------- /iOSInspectionApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/Podfile -------------------------------------------------------------------------------- /iOSInspectionApp/README-iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/README-iOS.md -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/ADALiOSBundle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/CommentCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/ContactOwnerCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+NavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+NavigationController.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+NavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+NavigationController.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+UIImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+UIImagePickerController.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+UIImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+UIImagePickerController.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+UIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+UIViewController.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKN+UIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKN+UIViewController.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNAppDelegate.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNAppDelegate.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNEKNGlobalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNEKNGlobalInfo.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNEKNGlobalInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNEKNGlobalInfo.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNGraph.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNGraph.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNGraph.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNListClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNListClient.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNListClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNListClient.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNListItem.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNListItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNListItem.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNLoginViewController.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNLoginViewController.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNMetadata.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNMetadata.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNPropertyDetailsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNPropertyDetailsViewController.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNPropertyDetailsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNPropertyDetailsViewController.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNVideoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNVideoService.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/EKNVideoService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/EKNVideoService.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/LeakyFaucet.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/LeakyFaucet.mp4 -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/before@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/before@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/before~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/before~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/black@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/black@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/black~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/black~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/camera@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/camera@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/camera~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/camera~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/detailsepartorline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/detailsepartorline.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/dropdown_arrow@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/dropdown_arrow@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/dropdown_arrow~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/dropdown_arrow~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/email@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/email@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/email~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/email~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/finalize@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/finalize@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/finalize~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/finalize~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/green@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/green@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/greenRoom@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/greenRoom@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/greenRoom~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/greenRoom~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/green~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/green~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/home@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/home@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/home~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/home~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/man@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/man@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/man~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/man~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/plus@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/plus@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/plus~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/plus~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/red@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/red@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/redRoom@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/redRoom@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/redRoom~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/redRoom~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/red~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/red~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/seg2@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/seg2@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/seg2~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/seg2~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/seg@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/seg@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/seg~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/seg~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/selected@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/selected@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/selected~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/selected~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/sepratorline@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/sepratorline@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/sepratorline~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/sepratorline~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/setting@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/setting@2x~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Images/setting~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Images/setting~ipad.png -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/InspectionListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/InspectionListCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/InspectionListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/InspectionListCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/InspectionListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/InspectionListCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/NSString+NSStringExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/NSString+NSStringExtensions.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/NSString+NSStringExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/NSString+NSStringExtensions.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyDetailsImage.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyListCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyListCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/PropertyListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/PropertyListCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/RoomListCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/RoomListCell.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/RoomListCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/RoomListCell.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/RoomListCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/RoomListCell.xib -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoChannel.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoChannel.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoItem.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoItem.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoItemOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoItemOperations.h -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/SPVideoItemOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/SPVideoItemOperations.m -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/iOSInspectionApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/iOSInspectionApp-Info.plist -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/iOSInspectionApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/iOSInspectionApp-Prefix.pch -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/iOSInspectionApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/iOSInspectionApp.entitlements -------------------------------------------------------------------------------- /iOSInspectionApp/iOSInspectionApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSInspectionApp/iOSInspectionApp/main.m -------------------------------------------------------------------------------- /iOSRepairApp/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/Podfile -------------------------------------------------------------------------------- /iOSRepairApp/README-iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/README-iOS.md -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ADALiOSBundle/ADALiOSBundle-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ADALiOSBundle/ADALiOSBundle-Info.plist -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ADALiOSBundle/ADALiOSBundle-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ADALiOSBundle/ADALiOSBundle-Prefix.pch -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ADALiOSBundle/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/BaseController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/BaseController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/BaseController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/BaseController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/CertificateSigningRequest.certSigningRequest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/CertificateSigningRequest.certSigningRequest -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ContactOwnerCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ContactOwnerCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ContactOwnerCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ContactOwnerCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ContactOwnerCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ContactOwnerCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ConversationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ConversationCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ConversationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ConversationCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/ConversationCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/ConversationCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+NavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+NavigationController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+NavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+NavigationController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+UIImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+UIImagePickerController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+UIImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+UIImagePickerController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+UIViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+UIViewController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKN+UIViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKN+UIViewController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNAppDelegate.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNAppDelegate.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNCollectionViewCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNEKNGlobalInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNEKNGlobalInfo.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNEKNGlobalInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNEKNGlobalInfo.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNGraphService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNGraphService.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNGraphService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNGraphService.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNIncidentDetailView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNIncidentDetailView.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNIncidentDetailView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNIncidentDetailView.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNIncidentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNIncidentViewController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNIncidentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNIncidentViewController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNListClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNListClient.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNListClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNListClient.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNListItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNListItem.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNListItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNListItem.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNLoginViewController.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNLoginViewController.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNMetadata.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNMetadata.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNOneNoteService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNOneNoteService.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNOneNoteService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNOneNoteService.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNPPcommonTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNPPcommonTableView.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNPPcommonTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNPPcommonTableView.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNPlanService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNPlanService.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNPlanService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNPlanService.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNVideoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNVideoService.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/EKNVideoService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/EKNVideoService.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/before@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/before@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/before~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/before~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/calendar@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/calendar@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/calendar~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/calendar~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/camera@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/camera@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/camera_gray@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/camera_gray@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/camera_gray~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/camera_gray~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/camera~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/camera~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/close@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/close@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/close~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/close~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/default~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/detailsepartorline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/detailsepartorline.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/email@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/email@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/email~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/email~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/finalize_repair@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/finalize_repair@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/finalize_repair~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/finalize_repair~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/home@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/home@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/home~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/home~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_excel@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_excel@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_excel~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_excel~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_powerpoint@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_powerpoint@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_powerpoint~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_powerpoint~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_word@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_word@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/ico_word~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/ico_word~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/icon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/icon@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/icon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/icon~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/incident_detailtab@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/incident_detailtab@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/incident_detailtab~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/incident_detailtab~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav1@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav1@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav1~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav1~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav2@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav2@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav2~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav2~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav3@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav3@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav3~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav3~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav4@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav4@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav4~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav4~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav5@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav5~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav5~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav6@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav6@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav6~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav6~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav7@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav7@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav7~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav7~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected1@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected1@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected1~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected1~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected2@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected2@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected2~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected2~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected3@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected3@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected3~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected3~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected4@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected4@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected4~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected4~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected5@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected5~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected5~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected6@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected6@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected6~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected6~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected7@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected7@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/left_nav_selected7~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/left_nav_selected7~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/man@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/man@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/man~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/man~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/navigation_background@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/navigation_background@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/navigation_background~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/navigation_background~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/oneNoteList@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/oneNoteList@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/oneNoteListSelect@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/oneNoteListSelect@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/oneNoteListSelect~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/oneNoteListSelect~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/oneNoteList~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/oneNoteList~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/open_onenote@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/open_onenote@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/open_onenote~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/open_onenote~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/sepratorline@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/sepratorline@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/sepratorline~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/sepratorline~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/setting@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/setting@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/setting~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/setting~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/video@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/video@2x~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Images/video~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Images/video~ipad.png -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentListItemCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentListItemCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentListItemCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentListItemCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentListItemCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentListItemCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentMenuCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentMenuCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentMenuCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentMenuCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/IncidentMenuCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/IncidentMenuCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/MSGraphConversation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/MSGraphConversation.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/MSGraphConversation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/MSGraphConversation.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/NSString+NSStringExtensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/NSString+NSStringExtensions.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/NSString+NSStringExtensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/NSString+NSStringExtensions.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/OneNoteCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/OneNoteCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/OneNoteCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/OneNoteCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/OneNoteCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/OneNoteCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsImage.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsImage.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyDetailsImage.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyDetailsImage.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyFileCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyFileCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyFileCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyFileCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyFileCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyFileCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyMembersCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyMembersCell.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyMembersCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyMembersCell.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/PropertyMembersCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/PropertyMembersCell.xib -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoChannel.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoChannel.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoItem.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoItem.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoItemOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoItemOperations.h -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/SPVideoItemOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/SPVideoItemOperations.m -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Settings.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Settings.bundle/Root.plist -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/iOSRepairApp-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/iOSRepairApp-Info.plist -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/iOSRepairApp-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/iOSRepairApp-Prefix.pch -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/iOSRepairApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/iOSRepairApp.entitlements -------------------------------------------------------------------------------- /iOSRepairApp/iOSRepairApp/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Property-Inspection-Code-Sample/HEAD/iOSRepairApp/iOSRepairApp/main.m --------------------------------------------------------------------------------