IRocketService.cs 355 字节
Newer Older
lwplvx's avatar
lwplvx 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
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();
        Task<ResponseModel<RocketDto>> Rocket(RocketDto model);
    }
}