16 lines
331 B
C#
16 lines
331 B
C#
using Backend.Common;
|
|
|
|
namespace Backend.Services;
|
|
|
|
public interface IAdminAuditService
|
|
{
|
|
void AddEntry(
|
|
string adminTwitchUserId,
|
|
string actionType,
|
|
string entityType,
|
|
string entityId,
|
|
string summary,
|
|
object? metadata = null,
|
|
RequestMetadata? requestMetadata = null);
|
|
}
|