compose_sample/TestApplication/Context/Manufacturer.cs

16 lines
338 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
namespace TestApplication.Context;
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>();
}