16 lines
338 B
C#
16 lines
338 B
C#
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>();
|
|
}
|