[C#] Check in initial auto-generated C# bindings
[ldk-java] / c_sharp / src / org / ldk / enums / Network.cs
diff --git a/c_sharp/src/org/ldk/enums/Network.cs b/c_sharp/src/org/ldk/enums/Network.cs
new file mode 100644 (file)
index 0000000..3379da0
--- /dev/null
@@ -0,0 +1,21 @@
+namespace org { namespace ldk { namespace enums {/**
+ * An enum representing the possible Bitcoin or test networks which we can run on
+ */
+public enum Network {
+       /**
+        * The main Bitcoin blockchain.
+        */
+       LDKNetwork_Bitcoin,
+       /**
+        * The testnet3 blockchain.
+        */
+       LDKNetwork_Testnet,
+       /**
+        * A local test blockchain.
+        */
+       LDKNetwork_Regtest,
+       /**
+        * A blockchain on which blocks are signed instead of mined.
+        */
+       LDKNetwork_Signet,
+}} } }