mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
suppress warning on prop accessed via reflection
This commit is contained in:
parent
a50519cf1a
commit
185e37863f
1 changed files with 7 additions and 1 deletions
|
|
@ -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<string> ValidationMessages { get; } = new List<string>();
|
||||
|
||||
public bool IsValid()
|
||||
|
|
|
|||
Loading…
Reference in a new issue