22 lines
424 B
C#
22 lines
424 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demka2025_sedelnikov;
|
|
|
|
public partial class Partnerproduct
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int? ProductId { get; set; }
|
|
|
|
public int? PartnerId { get; set; }
|
|
|
|
public int? Quantity { get; set; }
|
|
|
|
public string? SellDate { get; set; }
|
|
|
|
public virtual Partner? Partner { get; set; }
|
|
|
|
public virtual Product? Product { get; set; }
|
|
}
|