Compare commits

...

1 Commits

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>