All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
22 lines
513 B
C#
22 lines
513 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSQuoteHeader
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? TicketId { get; set; }
|
|
|
|
public int? BusinessunitsId { get; set; }
|
|
|
|
public int? CustomersId { get; set; }
|
|
|
|
public virtual PhSBusinessUnit? Businessunits { get; set; }
|
|
|
|
public virtual PhSCustomer? Customers { get; set; }
|
|
|
|
public virtual ICollection<PhSQuoteDetail> PhSQuoteDetails { get; set; } = new List<PhSQuoteDetail>();
|
|
}
|