QuellCode/CentronERP war nur als Gitlink (Submodul-Referenz auf 79c1142) getrackt, ohne .gitmodules und ohne erreichbares Remote. Der Untersuchungsgegenstand der Versuchsreihe war damit nicht reproduzierbar gesichert: Ein Klon haette ein leeres Verzeichnis erhalten, und die Belege der 3.287 Anforderungen waeren nicht ueberpruefbar gewesen. Umstellung: - Historie nach c:\DEV\CentronERP_git_snapshot_79c1142 ausgelagert (vollstaendig lesbar, enthaelt 79c1142 und Vorgaenger 89ccfd6) - Gitlink aus dem Index entfernt - Dateiinhalt aufgenommen: 24.557 Dateien, rund 333 MB Die verschachtelte .gitignore der Codebasis gilt weiter, Build-Artefakte bleiben ausgeschlossen. Details in Versuche/Versuch_01/_Codebasis-Nachweis.md
36 lines
997 B
C#
36 lines
997 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Centron.Api.docuFORM.Models.Swagger;
|
|
|
|
public class JobCreate
|
|
{
|
|
[JsonPropertyName("ipAddress")]
|
|
public string IpAddress { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("cardId")]
|
|
public string CardId { get; set; } = string.Empty;
|
|
|
|
/// <summary>1=SmartCard, 2=PIN, 3=Fingerprint, 4=Username.</summary>
|
|
[JsonPropertyName("cardType")]
|
|
public int CardType { get; set; }
|
|
|
|
[JsonPropertyName("jobName")]
|
|
public string JobName { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("billingCode")]
|
|
public int? BillingCode { get; set; }
|
|
|
|
/// <summary>20=Copies, 21=Scan, 22=Fax.</summary>
|
|
[JsonPropertyName("dataType")]
|
|
public int DataType { get; set; }
|
|
|
|
[JsonPropertyName("stapled")]
|
|
public bool? Stapled { get; set; }
|
|
|
|
[JsonPropertyName("punched")]
|
|
public bool? Punched { get; set; }
|
|
|
|
[JsonPropertyName("paperInfos")]
|
|
public List<JobCreatePaperInfo>? PaperInfos { get; set; }
|
|
}
|