14 lines
339 B
C#
14 lines
339 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace XiaoZhiSharp.Services
|
|
{
|
|
public interface IImageStorageService
|
|
{
|
|
Task<string> PostImage(string apiUrl, string token, string deviceId, string clientId, byte[] imageData,string question);
|
|
}
|
|
}
|