Initial commit
[NovacoinLibrary.git] / Novacoin / CBlock.cs
1 \feffusing System;
2
3 namespace Novacoin
4 {
5         public class CBlock
6         {
7                 /// <summary>
8                 /// Block header.
9                 /// </summary>
10                 public CBlockHeader header;
11
12                 /// <summary>
13                 /// Transactions array.
14                 /// </summary>
15                 public CTransaction[] tx;
16
17                 /// <summary>
18                 /// Block header signature.
19                 /// </summary>
20                 public byte[] signature;
21
22                 public CBlock ()
23                 {
24                 }
25         }
26 }
27