using System.Text.Json.Serialization; namespace ReC.Application.Common.Interfaces; public record AuthScope { public string? AddedWho { get; set; } } public interface IAuthScoped : IScoped { public string? AddedWho => Scope.AddedWho; }