16 lines
334 B
C#
16 lines
334 B
C#
namespace Yi.Framework.AiHub.Domain.Shared.Attributes;
|
|
|
|
[AttributeUsage(AttributeTargets.Class|AttributeTargets.Method)]
|
|
public class YiAgentToolAttribute:Attribute
|
|
{
|
|
public YiAgentToolAttribute()
|
|
{
|
|
}
|
|
|
|
public YiAgentToolAttribute(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
} |