14 lines
291 B
C#
14 lines
291 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace samusev_42;
|
|
|
|
public partial class Category
|
|
{
|
|
public int IdCategory { get; set; }
|
|
|
|
public string CategoryName { get; set; } = null!;
|
|
|
|
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
|
|
}
|