dbus/mono/MethodAttribute.cs
2004-03-23 12:10:32 +00:00

12 lines
209 B
C#

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