Catalog/MaddoShared/ImageState.cs
2025-07-28 11:25:46 +02:00

45 lines
No EOL
1.5 KiB
C#

using System;
using System.Drawing;
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; }
public Size ThumbSizeSmall { get; set; }
public Size ThumbSizeBig { get; set; }
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; }
}