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