14 lines
318 B
C#
14 lines
318 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demo_trade.Data.RemoteData.Entity;
|
|||
|
|
|||
|
public partial class Manufacturer
|
|||
|
{
|
|||
|
public int ManufacturerId { get; set; }
|
|||
|
|
|||
|
public string? ManufacturerName { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
|
|||
|
}
|