14 lines
417 B
C#
Raw Normal View History

2022-08-27 21:39:40 -05:00
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; }
2022-08-27 22:32:35 -05:00
public DateTime? DeployedAt { get; set; }
2022-08-27 21:39:40 -05:00
public bool IsVerified { get; set; }
}