phronCare/Models/Models/PhSBusinessUnit.cs
Leandro Hernan Rojas bba48a7e28
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 10m52s
Update UI y API Vendedores y Mapeo de Quote
2025-04-28 14:38:00 -03:00

20 lines
466 B
C#

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