16 lines
342 B
C#
16 lines
342 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TestApplication.Context;
|
|
|
|
public partial class Manufacturer1
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
public DateOnly? StartDate { get; set; }
|
|
|
|
public virtual ICollection<Product1> Product1s { get; set; } = new List<Product1>();
|
|
}
|