23 lines
602 B
C#
23 lines
602 B
C#
// <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; } = "";
|
|
|
|
}
|
|
}
|