using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebDoorCreator.Data.DTO { /// /// Oggetto contenitore esiti calcolo /// public class CalcResultDTO { /// /// UID (DoorId.Version) /// public string DoorIdVers { get; set; } = ""; /// /// Validated = true / error found = false /// public bool Validated { get; set; } = true; /// /// Error message (optional) /// public string ErrorMsg { get; set; } = ""; /// /// Object RAW generated output ( was SvgGen ) /// public string RawContent { get; set; } = ""; /// /// MimeType: svg / 3dm... /// public string MimeType { get; set; } = ""; /// /// Artifats path (ex 3d zip/pack) /// public string artifactPath { get; set; } = ""; } }