Files
lserp_cs_5.0/插件库/Zhaizj.Framework/Common/AppBase/IPageSection.cs
T
2026-07-10 15:25:05 +08:00

22 lines
370 B
C#

using System;
using System.Collections.Generic;
namespace Zhaizj.Framework.Common.AppBase {
/// <summary>
/// 页面区块接口(用于门户中)
/// </summary>
public interface IPageSection {
void AdminSectionShow( int sectionId );
void SectionShow( int sectionId );
List<IPageSettingLink> GetSettingLink( int sectionId );
}
}