Expand typed firewall and map API

This commit is contained in:
Vibe Myass
2026-03-16 04:07:08 +00:00
parent 1dfc6aebfd
commit e89739a64f
21 changed files with 1373 additions and 131 deletions

View File

@@ -19,4 +19,14 @@ public sealed class NftTable
/// Gets the sets declared in this table.
/// </summary>
public IList<NftSet> Sets { get; } = new List<NftSet>();
/// <summary>
/// Gets the maps declared in this table.
/// </summary>
public IList<NftMap> Maps { get; } = new List<NftMap>();
/// <summary>
/// Gets the chains declared in this table.
/// </summary>
public IList<NftChain> Chains { get; } = new List<NftChain>();
}