21 lines
465 B
C#
21 lines
465 B
C#
using Nop.Core.Caching;
|
|
|
|
namespace Nop.Services.Forums;
|
|
|
|
/// <summary>
|
|
/// Represents default values related to forums services
|
|
/// </summary>
|
|
public static partial class NopForumDefaults
|
|
{
|
|
#region Caching defaults
|
|
|
|
/// <summary>
|
|
/// Gets a key for caching
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// {0} : forum group ID
|
|
/// </remarks>
|
|
public static CacheKey ForumByForumGroupCacheKey => new("Nop.forum.byforumgroup.{0}");
|
|
|
|
#endregion
|
|
} |