11 lines
206 B
C#
11 lines
206 B
C#
using Toolkit.Foundation;
|
|
|
|
namespace Wallet;
|
|
|
|
public record WalletConfiguration :
|
|
ComponentConfiguration
|
|
{
|
|
public string? Key { get; set; }
|
|
|
|
public long? LockTimeout { get; set; } = 300000;
|
|
} |