16 lines
340 B
C#
16 lines
340 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demofinish.Models;
|
|
|
|
public partial class Materialtype
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; } = null!;
|
|
|
|
public decimal Defectedpercent { get; set; }
|
|
|
|
public virtual ICollection<Material> Materials { get; set; } = new List<Material>();
|
|
}
|