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
61 lines
1.5 KiB
C#
61 lines
1.5 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Centron.Api.docuFORM.Models.Swagger;
|
|
|
|
public class DeviceSupply
|
|
{
|
|
[JsonPropertyName("attachedItemId")]
|
|
public int? AttachedItemId { get; set; }
|
|
|
|
[JsonPropertyName("capacity")]
|
|
public int? Capacity { get; set; }
|
|
|
|
[JsonPropertyName("class")]
|
|
public int? Class { get; set; }
|
|
|
|
[JsonPropertyName("colorant")]
|
|
public string? Colorant { get; set; }
|
|
|
|
[JsonPropertyName("index")]
|
|
public int Index { get; set; }
|
|
|
|
[JsonPropertyName("level")]
|
|
public int? Level { get; set; }
|
|
|
|
[JsonPropertyName("levelCorrectionMode")]
|
|
public string? LevelCorrectionMode { get; set; }
|
|
|
|
[JsonPropertyName("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("orderState")]
|
|
public string? OrderState { get; set; }
|
|
|
|
[JsonPropertyName("originalPartNo")]
|
|
public string? OriginalPartNo { get; set; }
|
|
|
|
[JsonPropertyName("percent")]
|
|
public int? Percent { get; set; }
|
|
|
|
[JsonPropertyName("remainingPages")]
|
|
public int? RemainingPages { get; set; }
|
|
|
|
[JsonPropertyName("remainingDays")]
|
|
public int? RemainingDays { get; set; }
|
|
|
|
[JsonPropertyName("thresholdReached")]
|
|
public bool? ThresholdReached { get; set; }
|
|
|
|
[JsonPropertyName("timestamp")]
|
|
public DateTime? Timestamp { get; set; }
|
|
|
|
[JsonPropertyName("type")]
|
|
public int? Type { get; set; }
|
|
|
|
[JsonPropertyName("unit")]
|
|
public int? Unit { get; set; }
|
|
|
|
[JsonPropertyName("value")]
|
|
public string? Value { get; set; }
|
|
}
|