16 lines
467 B
C#
16 lines
467 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Core.Entities.Settings
|
|
{
|
|
public class EthereumConnectionSettings
|
|
{
|
|
public string KnokTokenContractAddress { get; set; }
|
|
public string Web3TargetAddress { get; set; }
|
|
public string KnokTokenContractAbi { get; set; }
|
|
public string DemoContractOwnerAddress { get; set; }
|
|
public string DemoContractOwnerPrivateKey { get; set; }
|
|
}
|
|
}
|