mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
18 lines
384 B
C#
18 lines
384 B
C#
using GethPlugin;
|
|
|
|
namespace CodexPlugin
|
|
{
|
|
[Serializable]
|
|
public class MarketplaceStartResults
|
|
{
|
|
public MarketplaceStartResults(EthAddress ethAddress, string privateKey)
|
|
{
|
|
EthAddress = ethAddress;
|
|
PrivateKey = privateKey;
|
|
}
|
|
|
|
public EthAddress EthAddress { get; }
|
|
public string PrivateKey { get; }
|
|
}
|
|
}
|