Account Class

The Account class represents the user's account information.

Properties

  • identifier: A string representing the user's identifier.

  • id: A string representing the user's ID.

Example

using System;
namespace Xerial
{
    [Serializable]
    public class Account
    {
        public string identifier;
        public string id;
    }
}

Last updated