Files
Yi.Framework/Yi.Framework.Net6/Yi.Framework.Common/Attribute/AutowiredAttribute.cs
2023-01-01 23:51:05 +08:00

14 lines
279 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Yi.Framework.Common.Attribute
{
[AttributeUsage(AttributeTargets.Property)]
public class AutowiredAttribute : System.Attribute
{
}
}