live-forum/server/webapi/LiveForum/LiveForum.IService/Flowers/IFlowersService.cs
2026-03-24 11:27:37 +08:00

26 lines
567 B
C#

using LiveForum.Code.Base;
using LiveForum.Model.Dto.Flowers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LiveForum.IService.Flowers
{
/// <summary>
/// 送花服务接口
/// </summary>
public interface IFlowersService
{
/// <summary>
/// 送花
/// </summary>
/// <param name="request">请求参数</param>
/// <returns></returns>
Task<BaseResponse<SendFlowerRespDto>> SendFlower(SendFlowerReq request);
}
}