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