CPF/CPF.Mac/Mac/Foundation/ConnectAttribute.cs

32 lines
377 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
[AttributeUsage(AttributeTargets.Property)]
public sealed class ConnectAttribute : Attribute
{
private string name;
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
public ConnectAttribute()
{
}
public ConnectAttribute(string name)
{
this.name = name;
}
}
}