Service/AvaloniaAppApplication/Models/Manufacturer.cs
Guitaras_Fingerchpoker e5d1f72e7d first commit
2025-05-15 11:20:37 +03:00

16 lines
344 B
C#

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>();
}