11 lines
283 B
C#
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; }
|
|
} |