2024-04-22 13:33:39 +03:30
|
|
|
|
namespace Netina.Domain.Entities.Users;
|
2023-12-16 20:25:12 +03:30
|
|
|
|
|
|
|
|
|
|
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; }
|
|
|
|
|
|
}
|