11 lines
309 B
11 lines
309 B
using NFine.Data;
|
|
using NFine.Domain.Entity.SystemManage;
|
|
using System.Collections.Generic;
|
|
|
|
namespace NFine.Domain.IRepository.SystemManage
|
|
{
|
|
public interface IModuleButtonRepository : IRepositoryBase<ModuleButtonEntity>
|
|
{
|
|
void SubmitCloneButton(List<ModuleButtonEntity> entitys);
|
|
}
|
|
}
|