2022-08-27 22:42:25 -05:00

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; }
}