mirror of
https://github.com/snltty/linker.git
synced 2025-12-24 12:38:04 +08:00
23 lines
430 B
C#
23 lines
430 B
C#
namespace cmonitor.server.ruleConfig
|
|
{
|
|
public sealed class RuleConfigMacOS : IRuleConfig
|
|
{
|
|
public RuleConfigInfo Data => null;
|
|
|
|
public void AddUser(string username)
|
|
{
|
|
|
|
}
|
|
|
|
public T Get<T>(string username, string key, T defaultValue)
|
|
{
|
|
return defaultValue;
|
|
}
|
|
|
|
public void Set<T>(string username, string key, T data)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|