10 lines
204 B
C#
Raw Normal View History

2026-01-10 13:47:54 +08:00
namespace RIZO.Model.System.Dto
{
public class ScanDto
{
public string Uuid { get; set; }
public string State { get; set; }
public string DeviceId { get; set; }
}
}