10 lines
162 B
C#
10 lines
162 B
C#
using System;
|
|
|
|
namespace FlowScope.Container
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class InjectableAttribute : Attribute
|
|
{
|
|
}
|
|
}
|