dbus/mono/MethodAttribute.cs

13 lines
209 B
C#
Raw Normal View History

2004-03-23 12:10:32 +00:00
using System;
namespace DBus
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
public class MethodAttribute : Attribute
{
public MethodAttribute()
{
}
}
}