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