28 lines
604 B
C#
28 lines
604 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SOH.Kernel
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false)]
|
|
public class AssemblyAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 程序集的GUID
|
|
/// </summary>
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 程序集名称
|
|
/// </summary>
|
|
public string AssemblyName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 程序集描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
}
|
|
}
|