-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added missing inline docs for client project
- Loading branch information
1 parent
e71430a
commit d6beea7
Showing
68 changed files
with
1,121 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 17 additions & 1 deletion
18
src/ReportPortal.Client/Abstractions/Filtering/FilterOption.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,29 @@ | ||
namespace ReportPortal.Client.Abstractions.Filtering | ||
{ | ||
/// <summary> | ||
/// Represents the paging information for a collection of items. | ||
/// </summary> | ||
public class Paging | ||
{ | ||
/// <summary> | ||
/// Initializes a new instance of the <see cref="Paging"/> class with the specified number and size. | ||
/// </summary> | ||
/// <param name="number">The page number.</param> | ||
/// <param name="size">The number of items per page.</param> | ||
public Paging(int number, int size) | ||
{ | ||
Number = number; | ||
Size = size; | ||
} | ||
|
||
/// <summary> | ||
/// Gets or sets the page number. | ||
/// </summary> | ||
public int Number { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the number of items per page. | ||
/// </summary> | ||
public int Size { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/ReportPortal.Client/Abstractions/Models/AnalyzerItemsMode.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,23 @@ | ||
namespace ReportPortal.Client.Abstractions.Models | ||
{ | ||
/// <summary> | ||
/// Represents the mode of analyzer items. | ||
/// </summary> | ||
public class AnalyzerItemsMode | ||
{ | ||
/// <summary> | ||
/// Represents the "To Investigate" mode of analyzer items. | ||
/// </summary> | ||
public const string ToInvestigate = "TO_INVESTIGATE"; | ||
|
||
/// <summary> | ||
/// Represents the "Auto Analyzed" mode of analyzer items. | ||
/// </summary> | ||
public const string AutoAnalyzed = "AUTO_ANALYZED"; | ||
|
||
/// <summary> | ||
/// Represents the "Manually Analyzed" mode of analyzer items. | ||
/// </summary> | ||
public const string ManuallyAnalyzed = "MANUALLY_ANALYZED"; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.