31 lines
808 B
C#
31 lines
808 B
C#
using Nop.Core.Caching;
|
|
|
|
namespace Nop.Services.News;
|
|
|
|
/// <summary>
|
|
/// Represents default values related to orders services
|
|
/// </summary>
|
|
public static partial class NopNewsDefaults
|
|
{
|
|
#region Caching defaults
|
|
|
|
/// <summary>
|
|
/// Key for number of news comments
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// {0} : news item ID
|
|
/// {1} : store ID
|
|
/// {2} : are only approved comments?
|
|
/// </remarks>
|
|
public static CacheKey NewsCommentsNumberCacheKey => new("Nop.newsitem.comments.number.{0}-{1}-{2}", NewsCommentsNumberPrefix);
|
|
|
|
/// <summary>
|
|
/// Gets a key pattern to clear cache
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// {0} : news item ID
|
|
/// </remarks>
|
|
public static string NewsCommentsNumberPrefix => "Nop.newsitem.comments.number.{0}";
|
|
|
|
#endregion
|
|
} |