using System.Runtime.CompilerServices;

namespace LogoForceTestApp.Modules.MainModule
{
    internal interface IParamChanged
    {
        void SetChanged([CallerMemberName] string propertyName = null);
    }
    
}