detect/detect.gui/Api/Helpers/DeviceHelper.cs

13 lines
313 B
C#
Raw Normal View History

2024-11-13 17:09:15 +08:00
using System.Collections.Generic;
using detect.gui.Models;
using detect.gui.Models.Entities;
namespace detect.gui.Api.Helpers;
public class DeviceHelper
{
public static ApiResponse<List<DeviceEntity>>? GetList()
{
return ApiHelper.Get<List<DeviceEntity>>("/v1/system/device/all", "");
}
}