2
0
mirror of synced 2025-02-13 08:56:30 +00:00
cs-codex-dist-tests/CodexPlugin/MarketplaceStartResults.cs
2023-09-19 11:51:59 +02:00

18 lines
386 B
C#

using GethPlugin;
namespace CodexPlugin
{
[Serializable]
public class MarketplaceStartResults
{
public MarketplaceStartResults(IEthAddress ethAddress, string privateKey)
{
EthAddress = ethAddress;
PrivateKey = privateKey;
}
public IEthAddress EthAddress { get; }
public string PrivateKey { get; }
}
}