phronCare/Models/Models/PhSProduct.cs

16 lines
366 B
C#
Raw Normal View History

2025-04-03 15:49:04 -03:00
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>();
}