TourIAm/TIAM.Entities/Products/IProductsRelation.cs

9 lines
224 B
C#

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