Cosmos/source/Cosmos.Common/AssemblyTypeAttribute.cs
2017-01-03 15:31:21 -06:00

15 lines
303 B
C#

using System;
namespace Cosmos.Common
{
[AttributeUsage(AttributeTargets.Assembly)]
public class AssemblyTypeAttribute : Attribute
{
public AssemblyTypeAttribute(AssemblyType aType)
{
Type = aType;
}
public AssemblyType Type { get; }
}
}