-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGoogleShoppingSettings.cs
51 lines (43 loc) · 1.61 KB
/
GoogleShoppingSettings.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using Grand.Domain.Configuration;
namespace Grand.Plugin.Feed.GoogleShopping
{
public class GoogleShoppingSettings : ISettings
{
/// <summary>
/// Product picture size
/// </summary>
public int ProductPictureSize { get; set; }
/// <summary>
/// A value indicating whether we should pass shipping info (weight)
/// </summary>
public bool PassShippingInfoWeight { get; set; }
/// <summary>
/// A value indicating whether we should pass shipping info (dimensions)
/// </summary>
public bool PassShippingInfoDimensions { get; set; }
/// <summary>
/// A value indicating whether we should calculate prices considering promotions (tier prices, discounts, special prices, etc)
/// </summary>
public bool PricesConsiderPromotions { get; set; }
/// <summary>
/// Store identifier for which feed file(s) will be generated
/// </summary>
public string StoreId { get; set; }
/// <summary>
/// Currency identifier for which feed file(s) will be generated
/// </summary>
public string CurrencyId { get; set; }
/// <summary>
/// Default Google category
/// </summary>
public string DefaultGoogleCategory { get; set; }
/// <summary>
/// Static GoogleShopping file name
/// </summary>
public string StaticFileName { get; set; }
/// <summary>
/// Number of days for expiration date
/// </summary>
public int ExpirationNumberOfDays { get; set; }
}
}