10 lines
351 B
C#
10 lines
351 B
C#
|
using ModelTools.Interfaces;
|
|||
|
using SecurityBusinessLogic.BindingModels;
|
|||
|
|
|||
|
namespace SecurityBusinessLogic.Interfaces
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Хранение общих настроек системы
|
|||
|
/// </summary>
|
|||
|
public interface IEnviromentSettingService : IEntityService<EnviromentSettingGetBindingModel, EnviromentSettingSetBindingModel> { }
|
|||
|
}
|