12 lines
273 B
C#
12 lines
273 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using DouyinApi.Model.Security;
|
|
|
|
namespace DouyinApi.IServices;
|
|
|
|
public interface IContentSecurityService
|
|
{
|
|
Task<ContentSecurityResult> CheckTextAsync(string text, CancellationToken cancellationToken = default);
|
|
}
|
|
|