using RhSolutions.SkuParser.Models;

namespace RhSolutions.SkuParser.Services;
public interface ISkuParser
{
	public IEnumerable<ProductQuantity> ParseProducts(IFormFile file);
}