mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-23 20:18:24 +00:00
18 lines
603 B
C#
18 lines
603 B
C#
using NftFaucet.Domain.Models.Abstraction;
|
|
|
|
namespace NftFaucet.Infrastructure.Models.State;
|
|
|
|
public class UserStateStorage
|
|
{
|
|
public ICollection<IToken> Tokens { get; set; }
|
|
public ICollection<ITokenUploadLocation> UploadLocations { get; set; }
|
|
|
|
public Guid[] SelectedNetworks { get; set; }
|
|
public Guid[] SelectedWallets { get; set; }
|
|
public Guid[] SelectedContracts { get; set; }
|
|
public Guid[] SelectedTokens { get; set; }
|
|
public Guid[] SelectedUploadLocations { get; set; }
|
|
public string DestinationAddress { get; set; }
|
|
public int TokenAmount { get; set; } = 1;
|
|
}
|