22 lines
526 B
C#
22 lines
526 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AccountingWarehouseProductsDatabaseImplement.Models
|
|
{
|
|
public class WarehouseProduct
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int WarehouseId { get; set; }
|
|
public int ProductId { get; set; }
|
|
|
|
public int Count { get; set; }
|
|
|
|
public virtual Warehouse Warehouse { get; set; } = new();
|
|
public virtual Product Product { get; set; } = new();
|
|
}
|
|
}
|