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