Create a specific widget for network filters

This commit is contained in:
2024-01-03 20:28:33 +01:00
parent a7bfb80547
commit ed48b22f7f
3 changed files with 38 additions and 13 deletions

View File

@ -114,9 +114,9 @@ export interface NWFilterRule {
export interface NWFilter {
name: string;
uuid?: string;
chain?: NWFilterChain;
priority?: number;
uuid?: string;
join_filters: string[];
rules: NWFilterRule[];
}