Files

14 lines
279 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-01-01 23:51:05 +08:00
namespace Yi.Framework.Common.Attribute
{
[AttributeUsage(AttributeTargets.Property)]
2023-01-01 23:51:05 +08:00
public class AutowiredAttribute : System.Attribute
{
}
}