16 lines
366 B
C#
16 lines
366 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace Models.Models;
|
|||
|
|
|
|||
|
|
public partial class PhSProduct
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public int? BusinessunitsId { get; set; }
|
|||
|
|
|
|||
|
|
public virtual PhSBusinessUnit? Businessunits { get; set; }
|
|||
|
|
|
|||
|
|
public virtual ICollection<PhSQuoteDetail> PhSQuoteDetails { get; set; } = new List<PhSQuoteDetail>();
|
|||
|
|
}
|