All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m56s
16 lines
356 B
C#
16 lines
356 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhOhTaxCondition
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Description { get; set; } = null!;
|
|
|
|
public string CmpClase { get; set; } = null!;
|
|
|
|
public virtual ICollection<PhSCustomer> PhSCustomers { get; set; } = new List<PhSCustomer>();
|
|
}
|