CloudBuilder/CloudBuilder.Core/Policy/ISecurityMasterManager.cs
owenchen 1c0c83af5f ow
2026-05-12 10:09:31 +08:00

20 lines
521 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CloudBuilder.Core.Policy
{
public interface ISecurityMasterManager
{
void InitSecurityMaster();
string GetValue(string category, string subcategory, string codeItem);
dynamic GetSecurityMaster(string category, string subcategory, string codeItem);
void SetSecurityMaster(string category, string subcategory, string codeItem, string value);
}
}