13 lines
379 B
C#
13 lines
379 B
C#
namespace Marco.Pms.Model.Dtos.Inventory
|
|
{
|
|
public class SupplierManufacturerDto
|
|
{
|
|
public Guid ManufacturerId { get; set; }
|
|
public Guid SupplierId { get; set; }
|
|
public double BasePrice { get; set; }
|
|
public int PurchaseLeadTime { get; set; }
|
|
public Guid CurrencyId { get; set; }
|
|
public bool IsActive { get; set; }
|
|
}
|
|
}
|