All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m45s
27 lines
687 B
C#
27 lines
687 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Models.Models;
|
|
|
|
public partial class PhLsmUnitOfMeasure
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Código abreviado de unidad de medida (ej: UN, ML, MT)
|
|
/// </summary>
|
|
public string Code { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Nombre descriptivo de la unidad de medida
|
|
/// </summary>
|
|
public string Name { get; set; } = null!;
|
|
|
|
/// <summary>
|
|
/// Descripción extendida o notas adicionales sobre la unidad
|
|
/// </summary>
|
|
public string? Description { get; set; }
|
|
|
|
public virtual ICollection<PhLsmProduct> PhLsmProducts { get; set; } = new List<PhLsmProduct>();
|
|
}
|