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

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