21 lines
449 B
C#
21 lines
449 B
C#
using System;
|
|
namespace UniversalEditor.Plugins.Blockchain.Bitcoin.ObjectModels
|
|
{
|
|
public class BitcoinBlockTransaction : BlockTransaction
|
|
{
|
|
public byte[] PublicKeyScript { get; set; }
|
|
|
|
public class BitcoinBlockTransactionCollection
|
|
: System.Collections.ObjectModel.Collection<BitcoinBlockTransaction>
|
|
{
|
|
|
|
}
|
|
|
|
public override object Clone()
|
|
{
|
|
BitcoinBlockTransaction clone = new BitcoinBlockTransaction();
|
|
return clone;
|
|
}
|
|
}
|
|
}
|