I finished! On to the next chapter

Outline

Demo: Create User Response

In the Conduit.Models Project

Create folder

Responses

Create class

User

Result of the C# from this demo:

namespace Conduit.Models.Responses
{
    public class User
    {
        public string Email { get; set; }
        public string Token { get; set; }
        public string UserName { get; set; }
        public string Bio { get; set; }
        public string Image { get; set; }
    }
}