"Amélioration de l'UI AutoDetect Syncshell : ajout de paramètres récurrents, plages horaires et gestion des fuseaux horaires. Refactorisation des méthodes de dessin et introduction de boutons centrés pour une meilleure ergonomie. Mise à jour des fichiers de configuration et du projet avec des optimisations diverses."

This commit is contained in:
2025-11-02 00:26:11 +01:00
parent deb911cb0a
commit f75f16fb13
2 changed files with 7 additions and 0 deletions

View File

@@ -7,4 +7,10 @@ public sealed record SyncshellDiscoveryVisibilityRequestDto
{ {
public string GID { get; init; } = string.Empty; public string GID { get; init; } = string.Empty;
public bool AutoDetectVisible { get; init; } public bool AutoDetectVisible { get; init; }
public int? DisplayDurationHours { get; init; }
public int[]? ActiveWeekdays { get; init; }
public string? TimeStartLocal { get; init; }
public string? TimeEndLocal { get; init; }
public string? TimeZone { get; init; }
} }

View File

@@ -4,6 +4,7 @@
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);NU1900</NoWarn>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>