2
0
mirror of synced 2025-02-13 08:56:30 +00:00
cs-codex-dist-tests/CodexPlugin/MarketplaceStartResults.cs

18 lines
386 B
C#
Raw Normal View History

2023-09-19 11:51:59 +02:00
using GethPlugin;
namespace CodexPlugin
2023-09-19 10:24:43 +02:00
{
[Serializable]
public class MarketplaceStartResults
{
2023-09-19 11:51:59 +02:00
public MarketplaceStartResults(IEthAddress ethAddress, string privateKey)
2023-09-19 10:24:43 +02:00
{
EthAddress = ethAddress;
PrivateKey = privateKey;
}
2023-09-19 11:51:59 +02:00
public IEthAddress EthAddress { get; }
2023-09-19 10:24:43 +02:00
public string PrivateKey { get; }
}
}