2025-07-28 11:25:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
|
|
namespace MaddoShared;
|
|
|
|
|
|
|
|
|
|
|
|
public class ImageState
|
|
|
|
|
|
{
|
|
|
|
|
|
public bool FotoRuotaADestra { get; set; } = false;
|
|
|
|
|
|
public bool FotoRuotaASinistra { get; set; } = false;
|
|
|
|
|
|
|
|
|
|
|
|
public string TempMinText { get; set; } = "";
|
|
|
|
|
|
// public crFont1 As Font
|
|
|
|
|
|
public string NomeFileChild { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public DirectoryInfo SourceDir { get; set; }
|
|
|
|
|
|
public DirectoryInfo DestDirStart { get; set; }
|
|
|
|
|
|
public DirectoryInfo DestDir { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public FileInfo WorkFile { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string TestoFirma { get; set; }
|
|
|
|
|
|
public string TestoFirmaV { get; set; }
|
|
|
|
|
|
public int AlphaScelta { get; set; }
|
|
|
|
|
|
public int DimensioneStandard { get; set; }
|
|
|
|
|
|
public int DimensioneStandardMiniatura { get; set; }
|
|
|
|
|
|
public DateTime DataFoto { get; set; }
|
|
|
|
|
|
public DateTime DataPartenzaI { get; set; }
|
|
|
|
|
|
public string TestoOrario { get; set; }
|
|
|
|
|
|
public string TestoFirmaPiccola { get; set; }
|
2026-05-28 20:27:05 +02:00
|
|
|
|
public string NomeFileSmall { get; set; }
|
|
|
|
|
|
public string NomeFileBig { get; set; }
|
|
|
|
|
|
public string NomeFileBig2 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public float YPosFromBottom { get; set; }
|
|
|
|
|
|
public float YPosFromBottom1 { get; set; }
|
|
|
|
|
|
public float YPosFromBottom2 { get; set; }
|
|
|
|
|
|
public float YPosFromBottom3 { get; set; }
|
|
|
|
|
|
public float YPosFromBottom4 { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public Orientations Orientation { get; set; }
|
|
|
|
|
|
public DateTime? CreationDate { get; set; }
|
2025-07-28 11:25:46 +02:00
|
|
|
|
}
|