mirror of
https://github.com/valentincanonical/eShopOnWeb-chisel-demo.git
synced 2026-05-11 10:56:43 +00:00
11 lines
298 B
C#
11 lines
298 B
C#
namespace Microsoft.eShopWeb.Web
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string BASKET_COOKIENAME = "eShop";
|
|
public const int ITEMS_PER_PAGE = 10;
|
|
public const string DEFAULT_USERNAME = "Guest";
|
|
public const string BASKET_ID = "BasketId";
|
|
}
|
|
}
|