10 lines
215 B
C#

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