mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 12:30:08 +01:00
12 lines
205 B
C#
12 lines
205 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace DBus
|
||
|
|
{
|
||
|
|
[AttributeUsage(AttributeTargets.Event, AllowMultiple=false, Inherited=true)] public class SignalAttribute : Attribute
|
||
|
|
{
|
||
|
|
public SignalAttribute()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|