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.
13 lines
357 B
13 lines
357 B
using CoreAgent.Domain.Models.Common;
|
|
using CoreAgent.Domain.Models.System;
|
|
using MediatR;
|
|
|
|
namespace CoreAgent.Application.Commands.System;
|
|
|
|
/// <summary>
|
|
/// 获取设备序列号命令
|
|
/// </summary>
|
|
public class GetSerialNumberCommand : IRequest<ApiActionResult<DeviceInfo>>
|
|
{
|
|
// 命令不需要额外参数,直接获取当前设备的序列号
|
|
}
|