14 lines
253 B
C#
14 lines
253 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demka2025_sedelnikov;
|
|
|
|
public partial class Materialtype
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? MaterialTypeName { get; set; }
|
|
|
|
public decimal? BrakPercent { get; set; }
|
|
}
|