dbus/mono/InterfaceAttribute.cs
2004-03-23 12:10:32 +00:00

23 lines
402 B
C#

using System;
namespace DBus
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple=false, Inherited=true)]
public class InterfaceAttribute : Attribute
{
private string interfaceName;
public InterfaceAttribute(string interfaceName)
{
this.interfaceName = interfaceName;
}
public string InterfaceName
{
get
{
return this.interfaceName;
}
}
}
}