Fix #3833: introduce token replace class.

This commit is contained in:
Ben
2024-02-18 21:37:06 +08:00
parent 766a190015
commit 77ce31128c
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();
}
}