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, 0 insertions, 18 deletions
diff --git a/mono/Custom.cs b/mono/Custom.cs
deleted file mode 100644
index f96562b9..00000000
--- a/mono/Custom.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-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;
- }
- }
-}