using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebDoorCreator.Data.DTO { /// /// Oggetto contenitore richiesta calcolo /// public class CalcReqtDTO { /// /// DDF file content (origin) /// public string DDF { get; set; } = ""; /// /// MimeType (out) requested: svg / 3dm... /// public string MimeType { get; set; } = ""; } }