10 lines
305 B
C#
10 lines
305 B
C#
namespace LiteCharms.Features.MidrandBooks.Products.Entities;
|
|
|
|
[EntityTypeConfiguration<ProductInventoryConfiguration, ProductInventory>]
|
|
public class ProductInventory : Models.ProductInventory
|
|
{
|
|
public virtual Product? Product { get; set; }
|
|
|
|
public virtual ProductPrice? Price { get; set; }
|
|
}
|