Refactored repo organization. Added Jenkinsfile.
This commit is contained in:
20
Props.Shop/Framework/SupportedFeatures.cs
Normal file
20
Props.Shop/Framework/SupportedFeatures.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
namespace Props.Shop.Framework
|
||||
{
|
||||
public class SupportedFeatures
|
||||
{
|
||||
bool Shipping { get; }
|
||||
bool Rating { get; }
|
||||
bool ReviewCount { get; }
|
||||
bool PurchaseCount { get; }
|
||||
bool InStock { get; }
|
||||
|
||||
public SupportedFeatures(bool shipping, bool rating, bool reviewCount, bool purchaseCount, bool inStock)
|
||||
{
|
||||
this.Shipping = shipping;
|
||||
this.Rating = rating;
|
||||
this.ReviewCount = reviewCount;
|
||||
this.PurchaseCount = purchaseCount;
|
||||
this.InStock = inStock;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user