mirror of
https://github.com/LD-Reborn/Berufsschule_HAM.git
synced 2025-12-20 06:51:55 +00:00
19 lines
564 B
C#
19 lines
564 B
C#
using System.Security.Cryptography;
|
|
using System.Text.Json;
|
|
|
|
namespace Berufsschule_HAM.Models;
|
|
|
|
public class AdminSettingsModel
|
|
{
|
|
public required string DefaultHashAlgorithm { get; set; }
|
|
public int MaxDownloadableUserImageSize { get; set; }
|
|
public required string BarcodeType { get; set; }
|
|
public required string BarcodeText { get; set; }
|
|
public required Dictionary<string, Preset> Presets { get; set; }
|
|
public HashAlgorithm? hashAlgorithm;
|
|
}
|
|
|
|
public class Preset
|
|
{
|
|
public required Dictionary<string, string> Attribute { get; set; }
|
|
} |