|
namespace NetinaShop.Domain.Entities.Users;
|
|
|
|
public class UserFavoriteProduct : ApiEntity
|
|
{
|
|
public Guid ProductId { get; internal set; }
|
|
public Product? Product { get; internal set; }
|
|
public Guid UserId { get; internal set; }
|
|
public ApplicationUser? User { get; internal set; }
|
|
} |