using MediatR; using System.Text.Json.Serialization; namespace ReC.Application.Common.Interfaces; public interface IScoped where TScope : notnull { [JsonIgnore] public TScope Scope { get; } }