15 lines
410 B
C#
15 lines
410 B
C#
using System.Threading.Tasks;
|
|
using DouyinApi.IServices.BASE;
|
|
using DouyinApi.Model.Models;
|
|
|
|
namespace DouyinApi.IServices
|
|
{
|
|
public partial interface IPasswordLibServices :IBaseServices<PasswordLib>
|
|
{
|
|
Task<bool> TestTranPropagation2();
|
|
Task<bool> TestTranPropagationNoTranError();
|
|
Task<bool> TestTranPropagationTran2();
|
|
Task<bool> TestTranPropagationTran3();
|
|
}
|
|
}
|