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
46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Centron.Api.docuFORM.Models.Swagger;
|
|
|
|
public class UserProperties
|
|
{
|
|
[JsonPropertyName("name")]
|
|
public string? Name { get; set; }
|
|
|
|
[JsonPropertyName("isAdmin")]
|
|
public bool IsAdmin { get; set; }
|
|
|
|
[JsonPropertyName("isLocked")]
|
|
public bool IsLocked { get; set; }
|
|
|
|
[JsonPropertyName("isReadOnly")]
|
|
public bool IsReadOnly { get; set; }
|
|
|
|
[JsonPropertyName("trialUntil")]
|
|
public DateTime? TrialUntil { get; set; }
|
|
|
|
[JsonPropertyName("validUntil")]
|
|
public DateTime? ValidUntil { get; set; }
|
|
|
|
[JsonPropertyName("fullName")]
|
|
public string? FullName { get; set; }
|
|
|
|
[JsonPropertyName("eMail")]
|
|
public string? EMail { get; set; }
|
|
|
|
[JsonPropertyName("referenceNumber")]
|
|
public string? ReferenceNumber { get; set; }
|
|
|
|
[JsonPropertyName("description")]
|
|
public string? Description { get; set; }
|
|
|
|
[JsonPropertyName("street")]
|
|
public string? Street { get; set; }
|
|
|
|
[JsonPropertyName("zip")]
|
|
public string? Zip { get; set; }
|
|
|
|
[JsonPropertyName("city")]
|
|
public string? City { get; set; }
|
|
}
|