mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-01-03 05:40:12 +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()
|
|
{
|
|
}
|
|
}
|
|
}
|