diff --git a/src/FilterLists.Agent/Core/Urls/EntityUrl.cs b/src/FilterLists.Agent/Core/Urls/EntityUrl.cs index 24d09dc4a..f8640908f 100644 --- a/src/FilterLists.Agent/Core/Urls/EntityUrl.cs +++ b/src/FilterLists.Agent/Core/Urls/EntityUrl.cs @@ -1,6 +1,8 @@ using System; using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; using System.Linq; +using JetBrains.Annotations; namespace FilterLists.Agent.Core.Urls { @@ -14,8 +16,12 @@ public EntityUrl(FilterListsEntity filterListsEntity, int id, Uri viewUrl) } public FilterListsEntity FilterListsEntity { get; } - public int Id { get; } + + [SuppressMessage("ReSharper", "MemberCanBePrivate.Global")] + public int Id { [UsedImplicitly] get; } + public Uri ViewUrl { get; } + public List ValidationMessages { get; } = new List(); public bool IsValid()