22 lines
370 B
C#
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 );
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|