12 lines
381 B
C#
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; }
|
|
}
|