14 lines
336 B
C#
14 lines
336 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace WinFormsApp3.Models;
|
|
|
|
public partial class MaterialName
|
|
{
|
|
public int IdMaterialName { get; set; }
|
|
|
|
public string MaterialName1 { get; set; } = null!;
|
|
|
|
public virtual ICollection<MaterialSupplier> MaterialSuppliers { get; set; } = new List<MaterialSupplier>();
|
|
}
|