dbus/mono/SignalAttribute.cs
2004-03-26 15:25:59 +00:00

11 lines
205 B
C#

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