mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 20:48:24 +00:00
14 lines
417 B
C#
14 lines
417 B
C#
namespace NftFaucetRadzen.Plugins.NetworkPlugins;
|
|
|
|
public class Contract : IContract
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Symbol { get; set; }
|
|
public string Address { get; set; }
|
|
public ContractType Type { get; set; }
|
|
public string DeploymentTxHash { get; set; }
|
|
public DateTime? DeployedAt { get; set; }
|
|
public bool IsVerified { get; set; }
|
|
}
|