summaryrefslogtreecommitdiffstats
path: root/mono/SignalAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'mono/SignalAttribute.cs')
-rw-r--r--mono/SignalAttribute.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mono/SignalAttribute.cs b/mono/SignalAttribute.cs
new file mode 100644
index 00000000..4835444b
--- /dev/null
+++ b/mono/SignalAttribute.cs
@@ -0,0 +1,11 @@
+using System;
+
+namespace DBus
+{
+ [AttributeUsage(AttributeTargets.Event, AllowMultiple=false, Inherited=true)] public class SignalAttribute : Attribute
+ {
+ public SignalAttribute()
+ {
+ }
+ }
+}