IRocketService.cs 356 字节
Newer Older
lwplvx's avatar
lwplvx 已提交
1 2 3 4 5 6 7 8 9 10 11
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Aurora.Core.IService.Dto;
using Aurora.Infrastructure.Response;

namespace Aurora.Core.IService
{
    public interface IRocketService
    {
        Task<ResponseModel<List<RocketDto>>> GetList();
lwplvx's avatar
lwplvx 已提交
12
        Task<ResponseModel<RocketDto>> Rocket(RocketDto model); 
lwplvx's avatar
lwplvx 已提交
13 14
    }
}