15 lines
261 B
C#
15 lines
261 B
C#
|
|
namespace Domain.Entities
|
|||
|
|
{
|
|||
|
|
public class EProductCategory
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Name { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string? Description { get; set; }
|
|||
|
|
|
|||
|
|
public bool Isactive { get; set; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|