mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
725 B
19 lines
725 B
// ==========================================================================
|
|
// RedisInfrastructureErrors.cs
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex Group
|
|
// All rights reserved.
|
|
// ==========================================================================
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Squidex.Infrastructure.Redis
|
|
{
|
|
public class RedisInfrastructureErrors
|
|
{
|
|
public static readonly EventId InvalidatingReceivedFailed = new EventId(50001, "InvalidingReceivedFailed");
|
|
|
|
public static readonly EventId InvalidatingPublishedFailed = new EventId(50002, "InvalidatingPublishedFailed");
|
|
}
|
|
}
|
|
|