22 lines
469 B
C#
22 lines
469 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demofinish.Models;
|
|
|
|
public partial class Supplier
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Title { get; set; } = null!;
|
|
|
|
public string Inn { get; set; } = null!;
|
|
|
|
public DateOnly Startdate { get; set; }
|
|
|
|
public int? Qualityrating { get; set; }
|
|
|
|
public string? Suppliertype { get; set; }
|
|
|
|
public virtual ICollection<Material> Materials { get; set; } = new List<Material>();
|
|
}
|