2025-11-16 19:33:01 +08:00

21 lines
484 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using Dto.SignalRNet;
namespace XPrintServer.Api.Dto
{
public class SubmitOrder
{
/// <summary>
/// 订单名称
/// </summary>
public string? OrderName { get; set; } = null;
/// <summary>
/// 生产端客户端Id用于下发刷新列表信息
/// </summary>
public string? ClientId { get; set; } = null;
public List<SyncImageInfo> ImageInfos { get; set; } = new List<SyncImageInfo>();
}
}