demka/demofinish/Model/Materialtype.cs
2025-04-03 23:00:11 +03:00

16 lines
339 B
C#

using System;
using System.Collections.Generic;
namespace demofinish.Model;
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>();
}