4cde37cd5f
Rimesso bottone x export 3d con timeout x risposta calcolo
40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DTO
|
|
{
|
|
/// <summary>
|
|
/// Oggetto contenitore esiti calcolo
|
|
/// </summary>
|
|
public class CalcResultDTO
|
|
{
|
|
/// <summary>
|
|
/// UID (DoorId.Version)
|
|
/// </summary>
|
|
public string DoorIdVers { get; set; } = "";
|
|
/// <summary>
|
|
/// Validated = true / error found = false
|
|
/// </summary>
|
|
public bool Validated { get; set; } = true;
|
|
/// <summary>
|
|
/// Error message (optional)
|
|
/// </summary>
|
|
public string ErrorMsg { get; set; } = "";
|
|
/// <summary>
|
|
/// Object RAW generated output ( was SvgGen )
|
|
/// </summary>
|
|
public string RawContent { get; set; } = "";
|
|
/// <summary>
|
|
/// MimeType: svg / 3dm...
|
|
/// </summary>
|
|
public string MimeType { get; set; } = "";
|
|
/// <summary>
|
|
/// Artifats path (ex 3d zip/pack)
|
|
/// </summary>
|
|
public string artifactPath { get; set; } = "";
|
|
}
|
|
}
|