All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 6m18s
Quote Demo v1
14 lines
383 B
C#
14 lines
383 B
C#
namespace Domain.Entities
|
|
{
|
|
public class EProductLookupItem
|
|
{
|
|
public int Id { get; set; }
|
|
public string Code { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public decimal UnitPrice { get; set; }
|
|
|
|
// Opcional para la UI
|
|
//public string DisplayName => $"{Code} - {Description}";
|
|
}
|
|
}
|