You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
319 B
C#
13 lines
319 B
C#
1 month ago
|
using WalletConnectSharp.Sign.Models.Engine;
|
||
|
|
||
|
namespace WalletConnectUnity.Modal
|
||
|
{
|
||
|
public sealed class WalletConnectModalOptions
|
||
|
{
|
||
|
public ConnectOptions ConnectOptions { get; set; }
|
||
|
|
||
|
public string[] IncludedWalletIds { get; set; }
|
||
|
|
||
|
public string[] ExcludedWalletIds { get; set; }
|
||
|
}
|
||
|
}
|