Skip to content

Commit

Permalink
Really make defintions read-only
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Oct 16, 2020
2 parents 2506498 + fc6cc32 commit 3175310
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -4,10 +4,10 @@ namespace HotChocolate.Data.Filters
{
public interface IFilterFieldDefinition
{
MemberInfo? Member { get; set; }
MemberInfo? Member { get; }

IFilterFieldHandler? Handler { get; set; }
IFilterFieldHandler? Handler { get; }

string? Scope { get; set; }
string? Scope { get; }
}
}

0 comments on commit 3175310

Please sign in to comment.