14 lines
410 B
C#
14 lines
410 B
C#
namespace NetinaShop.Core.Models;
|
|
public static class SiteMapUIds
|
|
{
|
|
public const string Categories = "5709ACC29A4D42E5B6F2DFFAD2FB0018";
|
|
public const string Blogs = "4C2F0C2A7A3E41268702D12FDDDB837F";
|
|
public const string Products = "E95AB3C0C4DD44FA82D77D55BD91696F";
|
|
|
|
public static List<string> AllSiteMapsUIds => new List<string>
|
|
{
|
|
Categories,
|
|
Blogs, Products
|
|
};
|
|
}
|