* qt/Makfile.am:
[platform/upstream/dbus.git] / mono / MethodAttribute.cs
1 using System;
2
3 namespace DBus
4 {
5   [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
6   public class MethodAttribute : Attribute 
7   {
8     public MethodAttribute() 
9     {
10     }
11   }
12 }