Skip to content

Commit

Permalink
Remove Sonar code analysis warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
tatarincev committed Jun 14, 2018
1 parent 1503e31 commit 20edc0a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ namespace VirtoCommerce.CatalogModule.Web.Model
/// </summary>
public class BulkLinkCreationRequest
{
public SearchCriteria SearchCriteria;
public SearchCriteria SearchCriteria { get; set; }

/// <summary>
/// The target category identifier for the link
/// </summary>
public string CategoryId;
public string CategoryId { get; set; }

/// <summary>
/// The target catalog identifier for the link
/// </summary>
public string CatalogId;
public string CatalogId { get; set; }
}
}

0 comments on commit 20edc0a

Please sign in to comment.