2023-10-31 11:47:27 -04:00

9 lines
179 B
C#
Executable File

namespace dotless.Core.Parameters
{
using System.Collections.Generic;
public interface IParameterSource
{
IDictionary<string, string> GetParameters();
}
}