mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
12 lines
205 B
C#
12 lines
205 B
C#
namespace NftFaucetRadzen.Models;
|
|
|
|
public class ScopedAppState
|
|
{
|
|
public StateStorage Storage { get; private set; } = new();
|
|
|
|
public void Reset()
|
|
{
|
|
Storage = new StateStorage();
|
|
}
|
|
}
|