All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m24s
18 lines
426 B
C#
18 lines
426 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhSAdjustmentReason
|
|
{
|
|
public string Code { get; set; } = null!;
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
public bool Active { get; set; }
|
|
|
|
public DateTime Createdat { get; set; }
|
|
|
|
public virtual ICollection<PhSQuoteAdjustment> PhSQuoteAdjustments { get; set; } = new List<PhSQuoteAdjustment>();
|
|
}
|