Files
sy_hx_pbl_backend/DOAN.Model/System/Model/Dto/ScanDto.cs

10 lines
204 B
C#
Raw Normal View History

2024-09-23 09:14:22 +08:00
namespace DOAN.Model.System.Dto
{
public class ScanDto
{
public string Uuid { get; set; }
public string State { get; set; }
public string DeviceId { get; set; }
}
}