tijian_jichuang/Code/SOH.Kernel/Kernel/AssemblyAttribute.cs
2025-02-20 11:54:48 +08:00

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; }
}
}