Files
2026-07-13 13:13:17 +08:00

11 lines
283 B
C#

using T3.Core.Operator.Slots;
namespace T3.Core.Operator.Interfaces;
/// <summary>
/// Provides information required to render additional information in Graph nodes
/// </summary>
public interface IDescriptiveFilename
{
InputSlot<string> SourcePathSlot { get; }
}