14 lines
298 B
C#
14 lines
298 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace shoe_store.Models;
|
|
|
|
public partial class Supplier
|
|
{
|
|
public int IdSupplier { get; set; }
|
|
|
|
public string SupplierName { get; set; } = null!;
|
|
|
|
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
|
|
}
|