Commit 89628a2 1 parent cf5952c commit 89628a2 Copy full SHA for 89628a2
File tree 1 file changed +16
-15
lines changed
src/FeatureManagement.Database.Abstractions/FeatureManagement/Database
1 file changed +16
-15
lines changed Original file line number Diff line number Diff line change @@ -13,21 +13,6 @@ public class FeatureSettings
13
13
/// </summary>
14
14
public Guid Id { get ; }
15
15
16
- /// <summary>
17
- /// The filter type used for enabling the feature.
18
- /// </summary>
19
- public FeatureFilterType FilterType
20
- {
21
- get => _filterType ;
22
- set
23
- {
24
- ValidateCustomFilterType ( value , _customFilterTypeName ) ;
25
- _filterType = value ;
26
- }
27
- }
28
-
29
- private FeatureFilterType _filterType ;
30
-
31
16
/// <summary>
32
17
/// <para>
33
18
/// Used for custom filter types not defined in the <see cref="FeatureFilterType"/> enum.
@@ -54,6 +39,22 @@ public string CustomFilterTypeName
54
39
55
40
private string _customFilterTypeName ;
56
41
42
+ /// <summary>
43
+ /// The filter type used for enabling the feature.
44
+ /// </summary>
45
+ public FeatureFilterType FilterType
46
+ {
47
+ get => _filterType ;
48
+ set
49
+ {
50
+ ValidateCustomFilterType ( value , _customFilterTypeName ) ;
51
+ _filterType = value ;
52
+ }
53
+ }
54
+
55
+ private FeatureFilterType _filterType ;
56
+
57
+
57
58
/// <summary>
58
59
/// The parameters associated with the feature settings.
59
60
/// </summary>
You can’t perform that action at this time.
0 commit comments