Let's get started with integrating the Mobile App Service that we just created into an application. You can use any application, but here we will use a WPF application. Open your Visual Studio IDE and navigate to File | New | Project... to create a WPF project.
Integrating Mobile App Service in a Windows application
Creating the Model and Service Client
Once the project gets created, you need to create the Model TodoItem in the project. To do so, right-click on the project and navigate to Add | Class... and name it as TodoItem. Now copy the definition of the class from the Azure portal and replace it in the code file. Here is the code for your easy reference:
public class TodoItem { public string Id {...