ZrAdminNetCore/ZR.Model/System/Model/Dto/ScanDto.cs
2025-11-15 13:51:09 +08:00

10 lines
202 B
C#

namespace ZR.Model.System.Dto
{
public class ScanDto
{
public string Uuid { get; set; }
public string State { get; set; }
public string DeviceId { get; set; }
}
}