2025-10-11 18:25:59 +08:00

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);
}
}