phronCare/Domain/Entities/EProduct.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

29 lines
630 B
C#

namespace Domain.Entities
{
public class EProduct
{
public int Id { get; set; }
public int? BusinessunitsId { get; set; }
public string? Name { get; set; }
public string Description { get; set; } = null!;
public int? Categoryid { get; set; }
public string? Origin { get; set; }
public decimal Baseprice { get; set; }
public string Currency { get; set; } = null!;
public bool Isactive { get; set; }
public virtual EBusinessUnit? Businessunits { get; set; }
public virtual EProductCategory? Category { get; set; }
}
}