mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-03 00:00:58 +08:00
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; }
|
|
} |