mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-22 11:20:27 +01:00
13 lines
209 B
C#
13 lines
209 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace DBus
|
||
|
|
{
|
||
|
|
[AttributeUsage(AttributeTargets.Method, AllowMultiple=false, Inherited=true)]
|
||
|
|
public class MethodAttribute : Attribute
|
||
|
|
{
|
||
|
|
public MethodAttribute()
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|