Files
2026-07-21 15:03:40 +07:00

17 lines
502 B
C#

using Domain.Common;
namespace Domain.Entities;
public class Product : BaseEntity
{
public string? Name { get; set; }
public string? Number { get; set; }
public string? Description { get; set; }
public double? UnitPrice { get; set; }
public bool? Physical { get; set; } = true;
public string? UnitMeasureId { get; set; }
public UnitMeasure? UnitMeasure { get; set; }
public string? ProductGroupId { get; set; }
public ProductGroup? ProductGroup { get; set; }
}