Merge pull request #3834 from zyhfish/task/token-replace-service

Fix #3833: introduce token replace class.
This commit is contained in:
Shaun Walker
2024-02-21 09:29:29 -05:00
committed by GitHub
6 changed files with 319 additions and 60 deletions

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Oqtane.Interfaces
{
public interface ITokenSource
{
IDictionary<string, object> GetTokens();
}
}