30 lines
687 B
C#
30 lines
687 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
|
|||
|
|
namespace NikiforovaMV.Models;
|
|||
|
|
|
|||
|
|
public partial class Servicesandsparepart
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; }
|
|||
|
|
|
|||
|
|
public string Art { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Name { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Description { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Photo { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Minimumprice { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Leadtime { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Costprice { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Boxnumber { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Employeesinvolved { get; set; } = null!;
|
|||
|
|
|
|||
|
|
public string Requiredmaterials { get; set; } = null!;
|
|||
|
|
}
|