mirror of
http://git.xinwangdao.com/cnnc-embedded-parts-detect/detect.git
synced 2025-06-24 13:34:13 +08:00
13 lines
313 B
C#
13 lines
313 B
C#
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", "");
|
|
}
|
|
} |