using System.Runtime.CompilerServices; namespace Phares.Shared.Models.Stateless.Methods; public interface IMethodName { static string? GetActualAsyncMethodName([CallerMemberName] string? name = null) => name; }