11 lines
329 B
C#
11 lines
329 B
C#
using Nop.Core.Domain.Customers;
|
|
using Nop.Services.Caching;
|
|
|
|
namespace Nop.Services.Customers.Caching;
|
|
|
|
/// <summary>
|
|
/// Represents an external authentication record cache event consumer
|
|
/// </summary>
|
|
public partial class ExternalAuthenticationRecordCacheEventConsumer : CacheEventConsumer<ExternalAuthenticationRecord>
|
|
{
|
|
} |