Good structure so far
This commit is contained in:
@@ -5,5 +5,8 @@ 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; } = [];
|
||||
public ICollection<ProductType> Types { get; set; } = new List<ProductType>();
|
||||
public DateTime CreatedAt { get; set; }
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user