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}";
|
|||
|
|
}
|
|||
|
|
}
|