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