using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WebWindowComplex.DTO { /// /// Dati specifici ricevuto dal chiamante x display e calcoli /// public class LivePayload { /// /// JWD Corrente /// public string CurrJwd { get; set; } = string.Empty; /// /// Preview SVG /// public string SvgPreview { get; set; } = string.Empty; /// /// Verifica di validità del Payload (solo jwd) /// /// public bool IsValid() { bool jwdOK = !string.IsNullOrEmpty(CurrJwd); return jwdOK; } } }