22 lines
479 B
C#
22 lines
479 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demka2025_sedelnikov;
|
|
|
|
public partial class Product
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string? ProductName { get; set; }
|
|
|
|
public string? Articul { get; set; }
|
|
|
|
public decimal? MinCost { get; set; }
|
|
|
|
public int? TypeId { get; set; }
|
|
|
|
public virtual ICollection<Partnerproduct> Partnerproducts { get; set; } = new List<Partnerproduct>();
|
|
|
|
public virtual Producttype? Type { get; set; }
|
|
}
|