Account Class
The Account class represents the user's account information.
Properties
Example
using System;
namespace Xerial
{
[Serializable]
public class Account
{
public string identifier;
public string id;
}
}Last updated