All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 10m52s
32 lines
740 B
C#
32 lines
740 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 string? Name { get; set; }
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
public int? Categoryid { get; set; }
|
|
|
|
public string? Origin { get; set; }
|
|
|
|
public decimal Baseprice { get; set; }
|
|
|
|
public string Currency { get; set; } = null!;
|
|
|
|
public bool Isactive { get; set; }
|
|
|
|
public virtual PhSBusinessUnit? Businessunits { get; set; }
|
|
|
|
public virtual PhSProductCategory? Category { get; set; }
|
|
|
|
public virtual ICollection<PhSQuoteDetail> PhSQuoteDetails { get; set; } = new List<PhSQuoteDetail>();
|
|
}
|