You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB
C#

2 months ago
#region << 版 本 注 释 >>
/*--------------------------------------------------------------------
* (c) 2025 WenJY
* CLR4.0.30319.42000
* Mr.Wen's MacBook Pro
* Sln.lmm.Collection.Model.TestAndInspection.InspectedPanel
* B616B23E-107A-4300-A773-B810B54D03FE
*
* WenJY
*
* 2025-10-22 16:47:04
* V1.0.0
*
*
*--------------------------------------------------------------------
*
*
*
*
* V1.0.0
*--------------------------------------------------------------------*/
#endregion << 版 本 注 释 >>
namespace Sln.Iot.Model.api.TestAndInspection.InspectedPanel
{
/// <summary>
/// 图像信息
/// </summary>
public class Image
{
/// <summary>
/// 图片类型
/// </summary>
public string MimeType { get; set; }
/// <summary>
/// 图片数据
/// </summary>
public string ImageData { get; set; }
}
}