Timofeev_pz8/shoe_store/Models/Manufacturer.cs

14 lines
310 B
C#

using System;
using System.Collections.Generic;
namespace shoe_store.Models;
public partial class Manufacturer
{
public int IdManufacturer { get; set; }
public string ManufacturerName { get; set; } = null!;
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}