UserData Class
The UserData class represents the user data retrieved from the Xerial services. It contains information about the user's account and wallets.
Properties
Example
using System;
namespace Xerial
{
[Serializable]
public class UserData
{
public Account user;
public Wallet[] wallets;
}
}Last updated