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
41 lines
1.2 KiB
C#
41 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Centron.Api.docuFORM.Models
|
|
{
|
|
public class AuthCodeRequest
|
|
{
|
|
[JsonPropertyName("client_id")]
|
|
public string ClientId { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("response_type")]
|
|
public string ResponseType { get; set; } = "code";
|
|
|
|
[JsonPropertyName("scope")]
|
|
public string Scope { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("redirect_uri")]
|
|
public string RedirectUri { get; set; } = "http://127.0.0.1";
|
|
|
|
[JsonPropertyName("authMode")]
|
|
public string AuthMode { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("state")]
|
|
public string State { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("code_challenge_method")]
|
|
public string CodeChallengeMethod { get; set; } = "S256";
|
|
|
|
[JsonPropertyName("code_challenge")]
|
|
public string CodeChallenge { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("infotext")]
|
|
public string InfoText { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("username")]
|
|
public string UserName { get; set; } = string.Empty;
|
|
}
|
|
}
|