using System;
namespace com.bbbirder.injection
{
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface, Inherited = false)]
public class OrderDIAttribute : Attribute
{
internal int order;
///
/// The default assign order of this type
///
/// pick from litter
public OrderDIAttribute(int order)
{
this.order = order;
}
}
}