Skip to content

Commit f63fba3

Browse files
committed
Fixed missing null!
1 parent d1fb0ef commit f63fba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Meraki.Api/Sections/Products/CellularGateway/CellularGatewaySection.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public class CellularGatewaySection
44
{
55
public ICellularGatewayConnectivityMonitoringDestinations ConnectivityMonitoringDestinations { get; internal set; } = null!;
66
public ICellularGatewayDhcp Dhcp { get; internal set; } = null!;
7-
public ICellularGatewayEsims Esims { get; internal set; } = null;
7+
public ICellularGatewayEsims Esims { get; internal set; } = null!;
88
public ICellularGatewayLan Lan { get; internal set; } = null!;
99
public ICellularGatewayPortForwardingRules PortForwardingRules { get; internal set; } = null!;
1010
public ICellularGatewaySubnetPool SubnetPool { get; internal set; } = null!;

0 commit comments

Comments
 (0)