phronCare/Models/Models/PhSBusinessUnit.cs
Leandro Hernan Rojas 50014b6765
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m48s
Add Customers in API
2025-04-03 15:50:37 -03:00

20 lines
482 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
public partial class PhSBusinessUnit
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public string? Manager { get; set; }
public virtual ICollection<PhSProduct> PhSProducts { get; set; } = new List<PhSProduct>();
public virtual ICollection<PhSQuoteHeader> PhSQuoteHeaders { get; set; } = new List<PhSQuoteHeader>();
}