12 lines
418 B
C#
12 lines
418 B
C#
namespace Printbase.Domain.Entities.Products;
|
|
|
|
public class ProductGroup
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public string? Description { get; set; }
|
|
public ICollection<ProductType> Types { get; set; } = new List<ProductType>();
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
public bool IsActive { get; set; }
|
|
} |