Skip to content

Commit

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

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

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

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

0 comments on commit af7f356

Please sign in to comment.