10 lines
204 B
C#
Raw Normal View History

2024-07-01 16:04:10 +08:00
namespace DOAN.Model.System.Dto
2024-05-16 13:30:30 +08:00
{
public class ScanDto
{
public string Uuid { get; set; }
public string State { get; set; }
public string DeviceId { get; set; }
}
}