17 lines
332 B
C#
Raw Normal View History

2025-10-11 18:25:59 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XiaoZhiSharp.Services
{
public interface ICameraService
{
/// <summary>
/// 拍照并获取图像数据
/// </summary>
Task<byte[]?> CapturePhotoAsync();
}
}