blob: 4835444ba607f45e523ece88438dab72951f6d39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using System;
namespace DBus
{
[AttributeUsage(AttributeTargets.Event, AllowMultiple=false, Inherited=true)] public class SignalAttribute : Attribute
{
public SignalAttribute()
{
}
}
}
|