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

21 lines
393 B

namespace SparkClient.Model.Entity.ApiEntity;
public class SocResultEntity
{
/// <summary>
/// 状态码
/// </summary>
public string Status { get; set; }
/// <summary>
/// 图片名称列表
/// </summary>
public List<string> Images { get; set; }
/// <summary>
/// 机器号
/// </summary>
public string DeviceId { get; set; }
}