mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
15 lines
303 B
C#
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; }
|
|
}
|
|
}
|