8 lines
133 B
C#
8 lines
133 B
C#
using SPMS.Domain.Entities;
|
|
|
|
namespace SPMS.Domain.Interfaces;
|
|
|
|
public interface IWebhookLogRepository : IRepository<WebhookLog>
|
|
{
|
|
}
|