You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
BookingHeChuan/Myshipping.Core/Service/Monitor/IMachineService.cs

11 lines
229 B
C#

using System.Threading.Tasks;
namespace Myshipping.Core.Service;
public interface IMachineService
{
Task<dynamic> GetMachineBaseInfo();
Task<dynamic> GetMachineNetWorkInfo();
Task<dynamic> GetMachineUseInfo();
}