Files
CMS/src/CMSMicroservice.Domain/Entities/ProductGallerys.cs
T
2025-11-12 02:24:02 +03:30

12 lines
381 B
C#

namespace CMSMicroservice.Domain.Entities;
//توکن Otp
public class ProductGallerys : BaseAuditableEntity
{
public long ProductImageId { get; set; }
//ProductImage Navigation Property
public virtual ProductImages ProductImage { get; set; }
public long ProductId { get; set; }
//Product Navigation Property
public virtual Products Product { get; set; }
}