demka/demofinish/Models/Supplier.cs

22 lines
469 B
C#
Raw Normal View History

2025-03-25 18:36:42 +00:00
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>();
}