using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Novacoin { public class CPubKey { private List pubKeyBytes; public IList Raw { get { return pubKeyBytes; } } } }