Files
laatzen/LaaProductionWeb/LaaProductionWeb.Data/Interfaces/IParameterCollection.cs
T
2023-04-04 11:12:07 +02:00

9 lines
236 B
C#

namespace LaaProductionWeb.Data.Interfaces
{
public interface IParameterCollection
{
IParameterCollection Add(string name, object value);
IParameterCollection AddFile(string name, byte[] fileContent);
}
}