summaryrefslogtreecommitdiffstats
path: root/mono/Custom.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/Custom.cs')
-rw-r--r--mono/Custom.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/mono/Custom.cs b/mono/Custom.cs
new file mode 100644
index 00000000..f96562b9
--- /dev/null
+++ b/mono/Custom.cs
@@ -0,0 +1,18 @@
+using System;
+
+using DBus;
+
+namespace DBus
+{
+ public struct Custom
+ {
+ public string Name;
+ public byte[] Data;
+
+ public Custom(string name, byte[] data)
+ {
+ Name = name;
+ Data = data;
+ }
+ }
+}