10 lines
362 B
C#
10 lines
362 B
C#
using DysonNetwork.Pass.Connection;
|
|
|
|
namespace DysonNetwork.Pass.Features.Account.Interfaces;
|
|
|
|
public interface IActionLogService
|
|
{
|
|
void CreateActionLog(Guid accountId, string action, Dictionary<string, object> meta);
|
|
void CreateActionLogFromRequest(string action, Dictionary<string, object> meta, HttpRequest request, Models.Account? account = null);
|
|
}
|