13 lines
281 B
C#
13 lines
281 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Public
|
|
{
|
|
public class ApiCallContext
|
|
{
|
|
public int UserId { get; set; }
|
|
public Dictionary<string, object> Parameters { get; set; } = new();
|
|
public HttpContext HttpContext { get; set; } = null!;
|
|
}
|
|
|
|
}
|