Catalog/MaddoShared/ImageState.cs
Maddo d76e133f18
Some checks failed
Build Windows Avalonia / build (push) Failing after 1m47s
Completely removed GDI
2026-05-28 20:27:05 +02:00

42 lines
No EOL
1.4 KiB
C#

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; }
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; }
}