Files
Yi.Framework/Yi.Framework.Net6/test/Yi.Framework.Web/Test2Entity.cs
2023-01-16 23:05:01 +08:00

12 lines
250 B
C#

using Yi.Framework.Core.Attributes;
using Yi.Framework.Core.DependencyInjection;
namespace Yi.Framework.Web
{
public class Test2Entity: ITransientDependency
{
[Autowired]
public TestEntity testEntity { get; set; }
}
}