Files
WorkFlowCheck/src/WorkFlowCheck.Common/RequestContext/IRequestContext.cs
T
2025-01-29 16:56:10 +01:00

19 lines
419 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.RequestContext
{
public interface IRequestContext
{
string TraceId { get; }
string CurrentUsername { get; }
string CurrentUserEmail { get; }
int? CurrentUserId { get; }
CancellationToken RequestAborted { get; }
}
}