initial commit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user