Skip to content

Commit

Permalink
IEnumerable comment
Browse files Browse the repository at this point in the history
  • Loading branch information
paweltomaszewskisaucelabs committed Apr 3, 2024
1 parent 9d5d329 commit e8c2129
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion visual-dotnet/SauceLabs.Visual/FullPageConfig.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
using System.Collections;
using SauceLabs.Visual.GraphQL;

namespace SauceLabs.Visual
{
public class FullPageConfig
{
public int? DelayAfterScrollMs { get; set; }
public string[]? HideAfterFirstScroll { get; set; }
public IEnumerable? HideAfterFirstScroll { get; set; }

internal FullPageConfigIn ToFullPageConfigIn()
{
Expand Down
3 changes: 2 additions & 1 deletion visual-dotnet/SauceLabs.Visual/GraphQL/FullPageConfigIn.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Collections;
using Newtonsoft.Json;

namespace SauceLabs.Visual.GraphQL
Expand All @@ -7,6 +8,6 @@ internal class FullPageConfigIn
[JsonProperty("delayAfterScrollMs")]
public int? DelayAfterScrollMs { get; set; }
[JsonProperty("hideAfterFirstScroll")]
public string[]? HideAfterFirstScroll { get; set; }
public IEnumerable? HideAfterFirstScroll { get; set; }
}
}

0 comments on commit e8c2129

Please sign in to comment.