phronCare/Domain/Entities/EProductCategory.cs
Leandro Hernan Rojas e41dc8747d
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 4m56s
Update Model, Tables Products in API
2025-04-16 09:30:00 -03:00

15 lines
261 B
C#

namespace Domain.Entities
{
public class EProductCategory
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
public bool Isactive { get; set; }
}
}