All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
18 lines
356 B
C#
18 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSQuoteDetail
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? QuoteheadersId { get; set; }
|
|
|
|
public int? ProductsId { get; set; }
|
|
|
|
public virtual PhSProduct? Products { get; set; }
|
|
|
|
public virtual PhSQuoteHeader? Quoteheaders { get; set; }
|
|
}
|