namespace CMSMicroservice.Domain.Entities; //سبد خرید کاربر public class UserCart : BaseAuditableEntity { public long ProductId { get; set; } //Product Navigation Property public virtual Product Product { get; set; } public long UserId { get; set; } //User Navigation Property public virtual User User { get; set; } public int Count { get; set; } }