using System.Runtime.CompilerServices;

namespace View_by_Distance.Shared.Models.Stateless.Methods;

public interface IMethodName
{

    static string? GetActualAsyncMethodName([CallerMemberName] string? name = null) => name;

}