qamp/Qrakhen.Qamp.Core/Values/Objects/Extension.cs

12 lines
289 B
C#

namespace Qrakhen.Qamp.Core.Values.Objects;
public class Extension(ValueType targetType, Function function) : Context(function)
{
public ValueType TargetType = targetType;
public override string ToString()
{
return $"{TargetType}.{Function.Name}() (Extension)";
}
}