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 Materials { get; set; } = new List(); }