You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
21 lines
498 B
using CoreAgent.Domain.Models.System;
|
|
|
|
namespace CoreAgent.Domain.Interfaces.System;
|
|
|
|
/// <summary>
|
|
/// 设备服务接口
|
|
/// </summary>
|
|
public interface IDeviceService
|
|
{
|
|
/// <summary>
|
|
/// 获取设备序列号(SN)
|
|
/// </summary>
|
|
/// <returns>设备信息</returns>
|
|
Task<DeviceInfo> GetSerialNumberAsync();
|
|
|
|
/// <summary>
|
|
/// 获取设备序列号(SN)- 同步版本
|
|
/// </summary>
|
|
/// <returns>设备信息</returns>
|
|
DeviceInfo GetSerialNumber();
|
|
}
|