4cde37cd5f
Rimesso bottone x export 3d con timeout x risposta calcolo
24 lines
558 B
C#
24 lines
558 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WebDoorCreator.Data.DTO
|
|
{
|
|
/// <summary>
|
|
/// Oggetto contenitore richiesta calcolo
|
|
/// </summary>
|
|
public class CalcReqtDTO
|
|
{
|
|
/// <summary>
|
|
/// DDF file content (origin)
|
|
/// </summary>
|
|
public string DDF { get; set; } = "";
|
|
/// <summary>
|
|
/// MimeType (out) requested: svg / 3dm...
|
|
/// </summary>
|
|
public string MimeType { get; set; } = "";
|
|
}
|
|
}
|