Added search cache updating

This commit is contained in:
2025-12-22 16:52:06 +01:00
parent ee12986fef
commit 8b36c65437
3 changed files with 49 additions and 3 deletions

View File

@@ -64,6 +64,15 @@ public class SearchdomainDeleteSearchResult
public string? Message { get; set; }
}
public class SearchdomainUpdateSearchResult
{
[JsonPropertyName("Success")]
public required bool Success { get; set; }
[JsonPropertyName("Message")]
public string? Message { get; set; }
}
public class SearchdomainSettingsResults
{
[JsonPropertyName("Success")]