phronCare/Models/Models/PhSProductCategory.cs
Leandro Hernan Rojas 8623488221
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 5m24s
Update ADD Patients y Institutions Models in API
2025-04-20 19:58:17 -03:00

18 lines
383 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
public partial class PhSProductCategory
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
public bool Isactive { get; set; }
public virtual ICollection<PhSProduct> PhSProducts { get; set; } = new List<PhSProduct>();
}