|
using AyCode.Interfaces.ServiceProviders;
|
|
using AyCode.Interfaces.Users;
|
|
using TIAM.Entities.Users;
|
|
|
|
namespace TIAM.Entities.Products;
|
|
|
|
public interface IProductRelation
|
|
{
|
|
public List<UserProductMapping> UserProductMappings { get; set; }
|
|
public List<Product> Products { get; set; }
|
|
|
|
} |