1
0

9 lines
194 B
C#
Raw Normal View History

2025-01-14 14:01:01 +00:00
using RhSolutions.SkuParser.Models;
namespace RhSolutions.SkuParser.Abstractions;
public interface ISkuParser
{
public Dictionary<Product, double> ParseProducts(IFormFile file);
}