zadanie/Demo1704/Models/Manufacturer.cs
Guitaras_Fingerchpoker 914d43e042 first commit
2025-04-17 05:05:48 +03:00

16 lines
330 B
C#

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