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 { /// /// 送花服务接口 /// public interface IFlowersService { /// /// 送花 /// /// 请求参数 /// Task> SendFlower(SendFlowerReq request); } }