summaryrefslogtreecommitdiffstats
path: root/mono/MethodAttribute.cs
blob: db5da24e7204da00b2c648f88d83d1a487772f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace DBus
{
  [AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
  public class MethodAttribute : Attribute 
  {
    public MethodAttribute() 
    {
    }
  }
}