Refactor app architecture and clean local artifacts
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
using Backend.Common;
|
||||
|
||||
namespace Backend.Services;
|
||||
|
||||
public interface IRiskFlagService
|
||||
{
|
||||
Task AddIfMissingAsync(
|
||||
int? seasonId,
|
||||
string? twitchUserId,
|
||||
string source,
|
||||
string type,
|
||||
string severity,
|
||||
string summary,
|
||||
RequestMetadata requestMetadata,
|
||||
object? metadata = null,
|
||||
CancellationToken cancellationToken = default);
|
||||
}
|
||||
Reference in New Issue
Block a user