22 lines
477 B
C#
22 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace SOH.Kernel
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class,AllowMultiple=false)]
|
|
public class ModuleAttribute : Attribute
|
|
{
|
|
/// <summary>
|
|
/// 模块ID GUID编码
|
|
/// </summary>
|
|
public string ModuleID { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 模块名称
|
|
/// </summary>
|
|
public string ModuleName { get; set; }
|
|
}
|
|
} |