16 lines
337 B
C#
16 lines
337 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ServiceApp.EnityModels;
|
|||
|
|
|||
|
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>();
|
|||
|
}
|