using TIAM.Entities.Users;
namespace TIAM.Entities.Products;
public interface IProductsRelation
{
//public List<UserProductMapping> UserProductMappings { get; set; }
public List<Product> Products { get; set; }
}