Files
lux/EgwCoreLib.Lux.Core/RestPayload/JwdDTO.cs
T
2025-07-22 19:07:33 +02:00

29 lines
727 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Core.RestPayload
{
public class JwdDTO
{
/// <summary>
/// Indice revisione formato del serializzato
/// </summary>
public string RevNum { get; set; } = "0.1.2.3";
public double Width { get; set; } = 800;
public double Height { get; set; } = 800;
/// <summary>
/// FAKE: nome del file svg da leggere direttamente...
/// </summary>
public string nameUrl { get; set; } = "";
}
}