10 lines
276 B
C#
10 lines
276 B
C#
using SPMS.Domain.Entities;
|
|
using SPMS.Domain.Interfaces;
|
|
|
|
namespace SPMS.Infrastructure.Persistence.Repositories;
|
|
|
|
public class WebhookLogRepository : Repository<WebhookLog>, IWebhookLogRepository
|
|
{
|
|
public WebhookLogRepository(AppDbContext context) : base(context) { }
|
|
}
|