using System; namespace Novacoin { public class CBlockHeader { /// /// Version of block schema. /// public uint nVersion; /// /// Previous block hash. /// public Hash256 prevHash; /// /// Merkle root hash. /// public Hash256 merkleRoot; /// /// Block timestamp. /// public uint nTime; /// /// Compressed difficulty representation. /// public uint nBits; /// /// Nonce counter. /// public uint nNonce; public CBlockHeader () { } } }