Updates based on review feedback

This commit is contained in:
Bjarke Berg
2021-08-06 11:26:31 +02:00
parent aaf28cba21
commit bbd935a0b8
4 changed files with 36 additions and 20 deletions

View File

@@ -1,6 +1,7 @@
// Copyright (c) Umbraco.
// See LICENSE for more details.
using System;
using System.ComponentModel;
using System.Net;
@@ -21,6 +22,6 @@ namespace Umbraco.Cms.Core.Configuration.Models
public bool Enabled { get; set; } = StaticEnabled;
public string[] AllowedIPs { get; set; } = new string[0];
public string[] AllowedIPs { get; set; } = Array.Empty<string>();
}
}