14 lines
307 B
C#
14 lines
307 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
using DouyinApi.Model.Naming;
|
||
|
|
|
||
|
|
namespace DouyinApi.IServices
|
||
|
|
{
|
||
|
|
public interface INamingService
|
||
|
|
{
|
||
|
|
Task<bool> ValidateSurnameAsync(string surname);
|
||
|
|
|
||
|
|
Task<NamingResponse> GenerateNamesAsync(NamingRequest request);
|
||
|
|
}
|
||
|
|
}
|