using Dpz.Core.Public.ViewModel;
#nullable enable
namespace Dpz.Core.Shard.Service;
public interface IVideoShardService
{
Task<List<VmVideo>> GetVideosAsync();
Task<VmVideo?> GetVideoAsync(string id);
Task AddPlayAsync(string id);
}
AI 正在分析代码…
评论加载中...