Service/AvaloniaAppApplication/Models/Manufacturer.cs

16 lines
344 B
C#
Raw Normal View History

2025-05-15 08:20:37 +00:00
using System;
using System.Collections.Generic;
namespace AvaloniaAppApplication.Models;
public partial class Manufacturer
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public DateOnly? Startdate { get; set; }
public virtual ICollection<Product> Products { get; set; } = new List<Product>();
}