Dotnet
Authentication and Authorization - Registration Part 1

Create User Response

Mute
Current Time 0:00
/
Duration Time 0:00
Loaded: 0%
Progress: 0%
Stream TypeLIVE
Remaining Time -0:00
 
PRO

I finished! On to the next chapter

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; }
    }
}