struct MAGES::User

Overview

Stores the user information. More…

struct User
{
    // fields

    string Id;
    string Username;
    string Email;
    string FirstName;
    string LastName;
    string Country;
    bool IsIntructor;
    Tenant Tenant;

    // methods

    override string ToString();
};

Detailed Documentation

Stores the user information.

Fields

string Id

The id.

string Username

The Username.

string Email

The email.

string FirstName

The firstname.

string LastName

The lastname.

string Country

The country.

bool IsIntructor

A boolean indicating if the user is an instructor.

Tenant Tenant

The tenant of this user.