2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Interfaces;
|
2021-03-26 20:09:52 +04:00
|
|
|
|
using SecurityBusinessLogic.BindingModels;
|
|
|
|
|
|
|
|
|
|
namespace SecurityBusinessLogic.Interfaces
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Хранение общих настроек системы
|
|
|
|
|
/// </summary>
|
2021-03-29 12:13:47 +04:00
|
|
|
|
public interface IEnviromentSettingService : IGenerticEntityService<EnviromentSettingGetBindingModel, EnviromentSettingSetBindingModel> { }
|
2021-03-26 20:09:52 +04:00
|
|
|
|
}
|